From 94062fcf76cb07e50576ada8ae838a33bd1795cf Mon Sep 17 00:00:00 2001 From: WoofBot <101908620+woofbotapp@users.noreply.github.com> Date: Fri, 16 Sep 2022 18:26:24 +0300 Subject: [PATCH] getrawtransaction verbose returns one address `reqSigs` and `addresses` fields were removed. `address` was added. See: https://github.com/bitcoin/bitcoin/commit/085b3a729952896ccd0e40c17df569f4421f5493 --- reference/rpc/getrawtransaction.rst | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/reference/rpc/getrawtransaction.rst b/reference/rpc/getrawtransaction.rst index 855f36e..f3f77ae 100644 --- a/reference/rpc/getrawtransaction.rst +++ b/reference/rpc/getrawtransaction.rst @@ -92,12 +92,8 @@ Result (if verbose is set to true) "scriptPubKey" : { (json object) "asm" : "str", (string) the asm "hex" : "str", (string) the hex - "reqSigs" : n, (numeric) The required sigs "type" : "str", (string) The type, eg 'pubkeyhash' - "addresses" : [ (json array) - "str", (string) bitcoin address - ... - ] + "address" : "str" (string) bitcoin address } }, ...