diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-29 19:09:13 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-09-17 11:38:18 +0000 |
commit | f23beb879ef10d80f95080402faf0040eb0b84d1 (patch) | |
tree | 14fa1f73ebb889f6903a5f5a3520a5d8b53c825d /tests | |
parent | functional_tests: move extraneous stuff out of the framework (diff) | |
download | monero-f23beb879ef10d80f95080402faf0040eb0b84d1.tar.xz |
functional_tests: add missing sweep_dust parameters, and test it
though not a very good test, but we don't have dust handy
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/transfer.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/functional_tests/transfer.py b/tests/functional_tests/transfer.py index 7ebda6ebd..867ef8bd3 100755 --- a/tests/functional_tests/transfer.py +++ b/tests/functional_tests/transfer.py @@ -45,6 +45,7 @@ class TransferTest(): self.transfer() self.check_get_bulk_payments() self.check_double_spend_detection() + self.sweep_dust() self.sweep_single() self.check_destinations() @@ -583,6 +584,13 @@ class TransferTest(): assert tx.in_pool assert tx.double_spend_seen + def sweep_dust(self): + print("Sweeping dust") + daemon = Daemon() + self.wallet[0].refresh() + res = self.wallet[0].sweep_dust() + assert not 'tx_hash_list' in res or len(res.tx_hash_list) == 0 # there's just one, but it cannot meet the fee + def sweep_single(self): daemon = Daemon() |