From 2fb155724ff7aebe314283ba2a975c1ed53dd2ef Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 20 Dec 2016 19:08:20 -0800 Subject: [PATCH] rpc/legacy: update to latest btcrpcclient API --- rpc/legacyrpc/methods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/legacyrpc/methods.go b/rpc/legacyrpc/methods.go index 760bb07..dc6ca2d 100644 --- a/rpc/legacyrpc/methods.go +++ b/rpc/legacyrpc/methods.go @@ -1250,7 +1250,7 @@ func listSinceBlock(icmd interface{}, w *wallet.Wallet, chainClient *chain.RPCCl if err != nil { return nil, DeserializationError{err} } - block, err := chainClient.GetBlockVerbose(hash) + block, err := chainClient.GetBlockVerboseTx(hash) if err != nil { return nil, err }