diff options
author | j-berman <justinberman@protonmail.com> | 2022-02-11 20:01:23 -0500 |
---|---|---|
committer | j-berman <justinberman@protonmail.com> | 2022-04-18 14:36:28 -0700 |
commit | 5d388eb74d8095b0757e77b47a0da53ec54eb972 (patch) | |
tree | 01cd0d28248a046943b1b5beec81c77e35b2e43e /tests/functional_tests/cold_signing.py | |
parent | Merge pull request #8211 (diff) | |
download | monero-5d388eb74d8095b0757e77b47a0da53ec54eb972.tar.xz |
Bump ring size to 16 for v15 & remove set default in wallet cli
Diffstat (limited to 'tests/functional_tests/cold_signing.py')
-rwxr-xr-x | tests/functional_tests/cold_signing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional_tests/cold_signing.py b/tests/functional_tests/cold_signing.py index 2233f19e7..31d5780bb 100755 --- a/tests/functional_tests/cold_signing.py +++ b/tests/functional_tests/cold_signing.py @@ -101,7 +101,7 @@ class ColdSigningTest(): res = self.cold_wallet.export_key_images(True) self.hot_wallet.import_key_images(res.signed_key_images, offset = res.offset) - res = self.hot_wallet.transfer([dst], ring_size = 11, get_tx_key = False) + res = self.hot_wallet.transfer([dst], ring_size = 16, get_tx_key = False) assert len(res.tx_hash) == 32*2 txid = res.tx_hash assert len(res.tx_key) == 0 @@ -121,7 +121,7 @@ class ColdSigningTest(): desc = res.desc[0] assert desc.amount_in >= amount + fee assert desc.amount_out == desc.amount_in - fee - assert desc.ring_size == 11 + assert desc.ring_size == 16 assert desc.unlock_time == 0 assert desc.payment_id in ['', '0000000000000000'] assert desc.change_amount == desc.amount_in - 1000000000000 - fee |