Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit 7f81e70

Browse files
authored
Merge pull request #950 from iotaledger/chore/changed-default-params
Change default params
2 parents c83d415 + a2cab5a commit 7f81e70

File tree

6 files changed

+1
-7
lines changed

6 files changed

+1
-7
lines changed

deploy/ansible/roles/exporter/files/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.8'
2-
31
services:
42
node_exporter:
53
image: quay.io/prometheus/node-exporter:latest

deploy/ansible/roles/iota-core-node/templates/docker-compose-iota-core.yml.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
{%- set _ = ips.append("/ip4/" + interface_details.ipv4.address + "/tcp/15600") -%}
77
{%- endif -%}
88
{% endfor -%}
9-
version: '3.3'
109

1110
services:
1211

deploy/ansible/roles/metrics/templates/docker-compose.yml.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#jinja2: trim_blocks:True, lstrip_blocks:True
2-
version: "3"
32

43
services:
54
prometheus:

pkg/network/p2p/manager.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package p2p
22

33
import (
44
"context"
5-
"time"
65

76
"github.com/libp2p/go-libp2p/core/host"
87
p2pnetwork "github.com/libp2p/go-libp2p/core/network"

tools/docker-network/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.9"
21
# Create a custom build that can be re-used within Docker network
32
x-build-iota-core: &iota-core_build
43
context: ${DOCKER_BUILD_CONTEXT:-../../}

tools/genesis-snapshot/presets/presets_yaml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func TestnetProtocolParameters(networkName string, bech32HRP iotago.NetworkPrefi
5656
iotago.WithNetworkOptions(networkName, bech32HRP),
5757
iotago.WithStorageOptions(100, 1, 100, 1000, 1000, 1000),
5858
iotago.WithWorkScoreOptions(500, 110_000, 7_500, 40_000, 90_000, 50_000, 40_000, 70_000, 5_000, 15_000),
59-
iotago.WithTimeProviderOptions(0, time.Now().Unix(), 10, 13),
59+
iotago.WithTimeProviderOptions(0, time.Now().Unix(), 10, 8),
6060
iotago.WithLivenessOptions(10, 15, 4, 7, 100),
6161
iotago.WithSupplyOptions(4600000000000000, 63, 1, 17, 32, 21, 70),
6262
iotago.WithCongestionControlOptions(1, 1, 1, 400_000_000, 250_000_000, 50_000_000, 1000, 100),

0 commit comments

Comments
 (0)