problem: critical bitcoin methods are not enabled by default

This commit is contained in:
Igor Artamonov
2020-04-24 00:04:10 -04:00
parent 7ab21f9281
commit f827f5a97a

View File

@@ -3,7 +3,12 @@ package io.emeraldpay.dshackle.upstream.bitcoin
import io.emeraldpay.dshackle.upstream.calls.DirectCallMethods
class DefaultBitcoinMethods : DirectCallMethods(
listOf("getbestblockhash", "getblock", "gettransaction")
listOf(
"getbestblockhash", "getblock", "getblocknumber", "getblockcount",
"gettransaction", "getrawtransaction", "gettxout",
"getreceivedbyaddress", "listunspent",
"getmemorypool"
)
) {