diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-01 14:16:51 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-14 11:34:09 +0000 |
commit | 91d97dd4abc5f155ec7a30b395eddc6fba1e2d32 (patch) | |
tree | e83db53ffb83781ab6c72feca27ff70b4b754324 /tests/fuzz | |
parent | wallet2: guard against overflowing of subaddress indices (diff) | |
download | monero-91d97dd4abc5f155ec7a30b395eddc6fba1e2d32.tar.xz |
fuzz_tests: set small subaddress lookahead for speed
Diffstat (limited to 'tests/fuzz')
-rw-r--r-- | tests/fuzz/cold-outputs.cpp | 1 | ||||
-rw-r--r-- | tests/fuzz/cold-transaction.cpp | 1 | ||||
-rw-r--r-- | tests/fuzz/signature.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/tests/fuzz/cold-outputs.cpp b/tests/fuzz/cold-outputs.cpp index 9aa9460d5..59b59810c 100644 --- a/tests/fuzz/cold-outputs.cpp +++ b/tests/fuzz/cold-outputs.cpp @@ -54,6 +54,7 @@ int ColdOutputsFuzzer::init() try { wallet.init(""); + wallet.set_subaddress_lookahead(1, 1); wallet.generate("", "", spendkey, true, false); } catch (const std::exception &e) diff --git a/tests/fuzz/cold-transaction.cpp b/tests/fuzz/cold-transaction.cpp index d81092c82..da33dc318 100644 --- a/tests/fuzz/cold-transaction.cpp +++ b/tests/fuzz/cold-transaction.cpp @@ -55,6 +55,7 @@ int ColdTransactionFuzzer::init() try { wallet.init(""); + wallet.set_subaddress_lookahead(1, 1); wallet.generate("", "", spendkey, true, false); } catch (const std::exception &e) diff --git a/tests/fuzz/signature.cpp b/tests/fuzz/signature.cpp index 2b8ffe465..7f22757b2 100644 --- a/tests/fuzz/signature.cpp +++ b/tests/fuzz/signature.cpp @@ -55,6 +55,7 @@ int SignatureFuzzer::init() try { wallet.init(""); + wallet.set_subaddress_lookahead(1, 1); wallet.generate("", "", spendkey, true, false); cryptonote::address_parse_info info; |