Skip to content

Commit 23ba152

Browse files
committed
fix crosscheck
1 parent 7375384 commit 23ba152

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

integration_tests/network.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ def setup_geth(path, base_port):
114114
str(base_port + 1),
115115
"--networkid",
116116
str(15),
117+
"--miner.etherbase",
118+
"0x57f96e6B86CdeFdB3d412547816a82E3E0EbF9D2",
117119
]
118120
print(*cmd)
119121
proc = subprocess.Popen(

nix/go-ethereum.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ let
1010
in
1111
buildGoModule rec {
1212
pname = "go-ethereum";
13-
version = "1.10.15";
13+
version = "1.11.2";
1414

1515
src = fetchFromGitHub {
1616
owner = "ethereum";
1717
repo = pname;
1818
rev = "v${version}";
19-
sha256 = "0f6n9rg42ph47mvykc9f0lf99yzwqy4jm7mlzyks4l6i6fl1g3q1";
19+
sha256 = "sha256-LCJDpSyQUL7DXZDbZepaoU78uXfoPPMKMETy/uq+0LE=";
2020
};
2121

22-
vendorSha256 = "1s5yfpk2yn7f3zwjl2fdrh6c63ki2b8rlmnlss27yxibsidaj0yd";
22+
vendorSha256 = "sha256-6yLkeT5DrAPUohAmobssKkvxgXI8kACxiu17WYbw+n0=";
2323

2424
doCheck = false;
2525

@@ -42,7 +42,6 @@ buildGoModule rec {
4242
"cmd/faucet"
4343
"cmd/geth"
4444
"cmd/p2psim"
45-
"cmd/puppeth"
4645
"cmd/rlpdump"
4746
"cmd/utils"
4847
];

scripts/geth-genesis.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"berlinBlock": 0,
1515
"yoloV3Block": 0,
1616
"londonBlock": 0,
17+
"shanghaiTime": 0,
1718
"clique": {
1819
"period": 2,
1920
"epoch": 30000

scripts/start-geth

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ print(Account.from_mnemonic('$VALIDATOR1_MNEMONIC').key.hex().replace('0x',''))
3333
cat > $tmpfile << EOF
3434
$validator_key
3535
EOF
36-
geth --datadir $DATA account import $tmpfile --password $pwdfile
36+
geth --datadir $DATA --password $pwdfile account import $tmpfile
3737

3838
# import community key
3939
community_key=$(python -c """
@@ -45,7 +45,7 @@ print(Account.from_mnemonic('$COMMUNITY_MNEMONIC').key.hex().replace('0x',''))
4545
cat > $tmpfile << EOF
4646
$community_key
4747
EOF
48-
geth --datadir $DATA account import $tmpfile --password $pwdfile
48+
geth --datadir $DATA --password $pwdfile account import $tmpfile
4949

5050
rm $tmpfile
5151

0 commit comments

Comments
 (0)