diff --git a/Dockerfile b/Dockerfile index 514bb81..626daab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ FROM ethereum/client-go:${UPSTREAM_VERSION} COPY jwtsecret /jwtsecret +#The TTD is that because of https://github.com/ethereum/go-ethereum/releases/tag/v1.10.18 it was changed + ENTRYPOINT geth --ropsten \ --http --http.addr 0.0.0.0 \ --http.corsdomain "*" \ @@ -16,5 +18,5 @@ ENTRYPOINT geth --ropsten \ --authrpc.port 8551 \ --authrpc.vhosts "*" \ --authrpc.jwtsecret "/jwtsecret" \ - --override.terminaltotaldifficulty 100000000000000000000000 \ + --override.terminaltotaldifficulty 50000000000000000 \ $EXTRA_OPTIONS