Skip to content

Commit

Permalink
bump version to v0.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Mar 15, 2024
1 parent 3f1f1c0 commit 10d37f1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 30 deletions.
3 changes: 2 additions & 1 deletion config/config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ max-compaction-levels = 7
port = 5850
# the seed relayer nodes list
seeds = [
"06ff8589d5d8b40dd90a8120fa65b273d136ba4896e46ad20d76e53a9b73fd9f@seed.mixin.dev:5850"
"06ff8589d5d8b40dd90a8120fa65b273d136ba4896e46ad20d76e53a9b73fd9f@seed.mixin.dev:5850",
"38047dc7632a7bcdef6a2dfab925de3a74bdde05a58f4623a3195a09d37c78fc@seed-mixin-node.exinpool.com:5850"
]
# a relayer needs a public address to listen and relay messages to other nodes
# a signer should set this value to false for security
Expand Down
29 changes: 2 additions & 27 deletions config/nodes.sh
Original file line number Diff line number Diff line change
@@ -1,33 +1,8 @@
#!/bin/bash

NODES=(
"new-mixin-node0.exinpool.com:8239"
"new-mixin-node1.exinpool.com:8239"
"new-mixin-node2.exinpool.com:8239"
"new-mixin-node3.exinpool.com:8239"
"mixin-node-lehigh-1.hotot.org:8239"
"mixin-node-lehigh-2.hotot.org:8239"
"mixin-node-42.f1ex.io:8239"
"mixin-node-fes.f1ex.io:8239"
"mixin-node-box-1.b.watch:8239"
"mixin-node-box-2.b.watch:8239"
"mixin-node-box-3.b.watch:8239"
"mixin-node-box-4.b.watch:8239"
"mixin-node-okashi.mixin.fan:8239"
"mixin-node1.b1.run:8239"
"mixin-node2.b1.run:8239"
"mixin-node3.b1.run:8239"
"mixin-node4.b1.run:8239"
"mixin-node6.b1.run:8239"
"mixin-node7.b1.run:8239"
"mixin-node8b.b1.run:8239"
"34.42.197.136:8239"
"13.51.72.77:8239"
"3.227.254.217:8239"
"44.197.199.140:8239"
"16.170.250.120:8239"
"13.51.169.35:8239"
"43.206.154.20:8239"
"https://kernel.mixin.dev"
"https://rpc-mixin.exinpool.com"
)

for NODE in "${NODES[@]}"
Expand Down
2 changes: 1 addition & 1 deletion config/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

const (
Debug = true
BuildVersion = "v0.18.2-BUILD_VERSION"
BuildVersion = "v0.18.3-BUILD_VERSION"
KernelNetworkId = "74c6cdb7d51af57037faa1f5544f8331ced001df5964331911ca51385993b375"

SnapshotRoundGap = uint64(3 * time.Second)
Expand Down
2 changes: 1 addition & 1 deletion config/reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func TestConfig(t *testing.T) {
require.Equal(7, custom.Storage.MaxCompactionLevels)

require.Equal(false, custom.P2P.Relayer)
require.Len(custom.P2P.Seeds, 1)
require.Len(custom.P2P.Seeds, 2)
require.Equal("06ff8589d5d8b40dd90a8120fa65b273d136ba4896e46ad20d76e53a9b73fd9f@seed.mixin.dev:5850", custom.P2P.Seeds[0])
require.Equal(false, custom.RPC.Runtime)
}

0 comments on commit 10d37f1

Please sign in to comment.