diff options
author | Adam Jonas <jonas@chaincode.com> | 2019-01-31 14:45:27 -0500 |
---|---|---|
committer | Adam Jonas <jonas@chaincode.com> | 2019-02-26 15:08:36 -0500 |
commit | 2fa85ebd1c2d7579ea005300e9101fbb48805c2f (patch) | |
tree | 109c285901da6ac7b666bd80ecb6757c66601fda /test/functional/wallet_basic.py | |
parent | 4b6673d3826128a9f58fd5417aaf4c2f4169c6aa (diff) |
add rpc_misc.py, mv test getmemoryinfo, add test mallocinfo
Diffstat (limited to 'test/functional/wallet_basic.py')
-rwxr-xr-x | test/functional/wallet_basic.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index daae2ed3c0..10b51ecdac 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -11,7 +11,6 @@ from test_framework.util import ( assert_array_result, assert_equal, assert_fee_amount, - assert_greater_than, assert_raises_rpc_error, connect_nodes_bi, sync_blocks, @@ -85,13 +84,8 @@ class WalletTest(BitcoinTestFramework): assert_equal(txout['value'], 50) # Send 21 BTC from 0 to 2 using sendtoaddress call. - # Locked memory should increase to sign transactions - self.log.info("test getmemoryinfo") - memory_before = self.nodes[0].getmemoryinfo() self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 11) mempool_txid = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 10) - memory_after = self.nodes[0].getmemoryinfo() - assert_greater_than(memory_after['locked']['used'], memory_before['locked']['used']) self.log.info("test gettxout (second part)") # utxo spent in mempool should be visible if you exclude mempool |