diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt index 4365e3ab..5e2b04b5 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultEthereumMethods.kt @@ -88,8 +88,9 @@ class DefaultEthereumMethods( specialMethods.contains(method) -> { when (method) { "eth_getTransactionCount" -> NonceQuorum() - "eth_getBalance" -> NotLaggingQuorum(1) + "eth_getBalance" -> NotLaggingQuorum(0) "eth_sendRawTransaction" -> BroadcastQuorum() + "eth_blockNumber" -> NotLaggingQuorum(0) else -> AlwaysQuorum() } }