diff options
author | Samuel Dobson <dobsonsa68@gmail.com> | 2019-09-14 21:42:34 +1200 |
---|---|---|
committer | Samuel Dobson <dobsonsa68@gmail.com> | 2019-09-14 21:45:30 +1200 |
commit | 4bfef0daeb9351c200b5bd09e60596a29b4d3523 (patch) | |
tree | cc31c38c3d8aaf300645db7e84ddb877b5e89fcd /doc | |
parent | fb4f5beb6ede4aadeaff779cd67a0f6665419488 (diff) | |
parent | 7dee8f48088c75ab0e51be60679505f8ce570919 (diff) |
Merge #16866: wallet: Rename 'decode' argument in gettransaction method to 'verbose'
7dee8f48088c75ab0e51be60679505f8ce570919 [wallet] Rename 'decode' argument in gettransaction method to 'verbose' (John Newbery)
Pull request description:
This makes the RPC method consistent with other RPC methods that have a
'verbose' option.
Change the name of the return object from 'decoded' to details.
Update help text.
ACKs for top commit:
promag:
ACK 7dee8f48088c75ab0e51be60679505f8ce570919.
meshcollider:
Code review ACK 7dee8f48088c75ab0e51be60679505f8ce570919
0xB10C:
ACK 7dee8f48088c75ab0e51be60679505f8ce570919: reviewed code
Tree-SHA512: a3a62265c8e6e914591f3b3b9f9dd4f42240dc8dab9cbac6ed8d8b8319b6cc847db2ad1689d5440c162e0698f31e39fc6b868ed918b2f62879d61b9865cae66b
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes-16185.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/release-notes-16185.md b/doc/release-notes-16185.md index eeeb951e5b..14e4004f72 100644 --- a/doc/release-notes-16185.md +++ b/doc/release-notes-16185.md @@ -1,3 +1,3 @@ RPC changes ----------- -The `gettransaction` RPC now accepts a third (boolean) argument `decode`. If set to `true`, a new `decoded` field will be added to the response containing the decoded transaction. +The `gettransaction` RPC now accepts a third (boolean) argument `verbose`. If set to `true`, a new `details` field will be added to the response containing additional transaction details. |