diff options
| author | Jon Layton <[email protected]> | 2018-11-13 13:42:36 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-11-13 14:24:40 -0500 |
| commit | fa0815c3005c861ba94b96412e7997c25e7f6788 (patch) | |
| tree | 2208715a790996a7427ee730b1b60fed3d6c69a3 /test/functional/feature_pruning.py | |
| parent | Merge #14530: Use RPCHelpMan to generate RPC doc strings (diff) | |
| download | discoin-fa0815c3005c861ba94b96412e7997c25e7f6788.tar.xz discoin-fa0815c3005c861ba94b96412e7997c25e7f6788.zip | |
rpc: Correctly name arguments
Diffstat (limited to 'test/functional/feature_pruning.py')
| -rwxr-xr-x | test/functional/feature_pruning.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_pruning.py b/test/functional/feature_pruning.py index c820ca33e..c162f46d6 100755 --- a/test/functional/feature_pruning.py +++ b/test/functional/feature_pruning.py @@ -249,7 +249,7 @@ class PruneTest(BitcoinTestFramework): return index def prune(index, expected_ret=None): - ret = node.pruneblockchain(height(index)) + ret = node.pruneblockchain(height=height(index)) # Check the return value. When use_timestamp is True, just check # that the return value is less than or equal to the expected # value, because when more than one block is generated per second, |