Unverified Commit 020c2671 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

nixos/quorum: fix geth args, fix test (#341181)

parents d07780f9 7fb51e54
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -201,11 +201,11 @@ in {
            --syncmode ${cfg.syncmode} \
            ${optionalString (cfg.permissioned)
            "--permissioned"} \
            --mine --minerthreads 1 \
            --mine --miner.threads 1 \
            ${optionalString (cfg.rpc.enable)
            "--rpc --rpcaddr ${cfg.rpc.address} --rpcport ${toString cfg.rpc.port} --rpcapi ${cfg.rpc.api}"} \
            ${optionalString (cfg.ws.enable)
            "--ws --wsaddr ${cfg.ws.address} --wsport ${toString cfg.ws.port} --wsapi ${cfg.ws.api} --wsorigins ${cfg.ws.origins}"} \
            "--ws --ws.addr ${cfg.ws.address} --ws.port ${toString cfg.ws.port} --ws.api ${cfg.ws.api} --ws.origins ${cfg.ws.origins}"} \
            --emitcheckpoints \
            --datadir ${dataDir} \
            --port ${toString cfg.port}'';
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ in
              "0x0000000000000000000000000000000000000000000000000000000000000000";
            eip155Block = 1;
            eip158Block = 1;
            homesteadBlock = 1;
            isQuorum = true;
            istanbul = {
              epoch = 30000;