Skip to content

Commit 8f5f52d

Browse files
tecnovertFuzzbawls
authored andcommitted
Remove semicolon and add "verbose" back to vRPCConvertParams.
Github-Pull: #2779 Rebased-From: b512d94
1 parent ba310d1 commit 8f5f52d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/rpc/client.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ static const CRPCConvertParam vRPCConvertParams[] = {
5454
{ "getbalance", 2, "include_delegated" },
5555
{ "getbalance", 3, "include_shield" },
5656
{ "getblock", 1, "verbosity" },
57+
{ "getblock", 1, "verbose" },
5758
{ "getblockhash", 0, "height" },
5859
{ "getblockheader", 1, "verbose" },
5960
{ "getblockindexstats", 0, "height" },

test/functional/rpc_blockchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _test_getblock(self):
119119

120120
assert_is_hash_string(node.getblock(besthash, 1)['tx'][0])
121121
assert_is_hash_string(node.getblock(besthash, True)['tx'][0])
122-
assert_is_hex_string(node.getblock(besthash, 2)['tx'][0]['vin'][0]['coinbase']);
122+
assert_is_hex_string(node.getblock(besthash, 2)['tx'][0]['vin'][0]['coinbase'])
123123

124124

125125
if __name__ == '__main__':

0 commit comments

Comments
 (0)