diff options
author | xiphon <xiphon@protonmail.com> | 2020-01-09 11:57:17 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2020-03-31 21:58:25 +0000 |
commit | 6d6af701ec6ebe93091ed516d2244bea166758a0 (patch) | |
tree | 3bf8f0519c468fc01395f69d931022f7f801bceb /tests | |
parent | Merge pull request #6336 (diff) | |
download | monero-6d6af701ec6ebe93091ed516d2244bea166758a0.tar.xz |
cryptonote_basic: drop unused verification_context::m_not_rct field
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/transfer.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/functional_tests/transfer.py b/tests/functional_tests/transfer.py index 3bed69b98..c3d71aa9c 100755 --- a/tests/functional_tests/transfer.py +++ b/tests/functional_tests/transfer.py @@ -256,7 +256,6 @@ class TransferTest(): assert res.too_big == False assert res.overspend == False assert res.fee_too_low == False - assert res.not_rct == False self.wallet[0].refresh() @@ -598,7 +597,6 @@ class TransferTest(): assert res.too_big == False assert res.overspend == False assert res.fee_too_low == False - assert res.not_rct == False res = daemon.get_transactions([txes[0][0]]) assert len(res.txs) >= 1 @@ -615,7 +613,6 @@ class TransferTest(): assert res.too_big == False assert res.overspend == False assert res.fee_too_low == False - assert res.not_rct == False assert res.too_few_outputs == False res = daemon.get_transactions([txes[0][0]]) |