diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt index b17aee02..b1299420 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/ManagedCallMethods.kt @@ -82,7 +82,7 @@ class ManagedCallMethods( override fun createQuorumFor(method: String): CallQuorum { return when { isDelegated(method) && !isRedefined(method) -> delegate.createQuorumFor(method) - enabled.contains(method) -> quorum[method]?.create() ?: defaultQuorum.create() + allAllowed.contains(method) -> quorum[method]?.create() ?: defaultQuorum.create() else -> { log.warn("Getting quorum for unknown method - $method") defaultQuorum.create()