Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default params #950

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions deploy/ansible/roles/exporter/files/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:
node_exporter:
image: quay.io/prometheus/node-exporter:latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
{%- set _ = ips.append("/ip4/" + interface_details.ipv4.address + "/tcp/15600") -%}
{%- endif -%}
{% endfor -%}
version: '3.3'

services:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#jinja2: trim_blocks:True, lstrip_blocks:True
version: "3"

services:
prometheus:
Expand Down
1 change: 0 additions & 1 deletion pkg/network/p2p/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package p2p

import (
"context"
"time"

"github.com/libp2p/go-libp2p/core/host"
p2pnetwork "github.com/libp2p/go-libp2p/core/network"
Expand Down
1 change: 0 additions & 1 deletion tools/docker-network/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
# Create a custom build that can be re-used within Docker network
x-build-iota-core: &iota-core_build
context: ${DOCKER_BUILD_CONTEXT:-../../}
Expand Down
2 changes: 1 addition & 1 deletion tools/genesis-snapshot/presets/presets_yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func TestnetProtocolParameters(networkName string, bech32HRP iotago.NetworkPrefi
iotago.WithNetworkOptions(networkName, bech32HRP),
iotago.WithStorageOptions(100, 1, 100, 1000, 1000, 1000),
iotago.WithWorkScoreOptions(500, 110_000, 7_500, 40_000, 90_000, 50_000, 40_000, 70_000, 5_000, 15_000),
iotago.WithTimeProviderOptions(0, time.Now().Unix(), 10, 13),
iotago.WithTimeProviderOptions(0, time.Now().Unix(), 10, 8),
iotago.WithLivenessOptions(10, 15, 4, 7, 100),
iotago.WithSupplyOptions(4600000000000000, 63, 1, 17, 32, 21, 70),
iotago.WithCongestionControlOptions(1, 1, 1, 400_000_000, 250_000_000, 50_000_000, 1000, 100),
Expand Down
Loading