Merge pull request #230926 from bachp/geth-test-zhf

nixos/geth: fix failing test
This commit is contained in:
Jörg Thalheim 2023-05-10 07:23:24 +01:00 committed by GitHub
commit e758377984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,10 @@ import ./make-test-python.nix ({ pkgs, ... }: {
enable = true;
port = 18545;
};
authrpc = {
enable = true;
port = 18551;
};
};
};
@ -31,11 +35,11 @@ import ./make-test-python.nix ({ pkgs, ... }: {
machine.wait_for_open_port(18545)
machine.succeed(
'geth attach --exec eth.blockNumber http://localhost:8545 | grep \'^0$\' '
'geth attach --exec "eth.blockNumber" http://localhost:8545 | grep \'^0$\' '
)
machine.succeed(
'geth attach --exec "eth.chainId()" http://localhost:18545 | grep \'"0x5"\' '
'geth attach --exec "eth.blockNumber" http://localhost:18545 | grep \'^0$\' '
)
'';
})