diff options
| author | Lee Clagett <code@leeclagett.com> | 2021-01-24 07:42:57 +0000 |
|---|---|---|
| committer | Lee Clagett <code@leeclagett.com> | 2021-01-23 06:23:39 +0000 |
| commit | 08e4497c6e3b3f434c0bb255c3942648f153fe66 (patch) | |
| tree | 2564f4214e9e66b2dc03ce3c788bb080b963be56 /tests/fuzz/cold-transaction.cpp | |
| parent | 0a1ddc2eff854f3e932203a95b65a9f1efd60eef (diff) | |
| download | monzero-core-08e4497c6e3b3f434c0bb255c3942648f153fe66.tar.gz monzero-core-08e4497c6e3b3f434c0bb255c3942648f153fe66.tar.xz monzero-core-08e4497c6e3b3f434c0bb255c3942648f153fe66.zip | |
Improve cryptonote (block and tx) binary read performance
Diffstat (limited to 'tests/fuzz/cold-transaction.cpp')
| -rw-r--r-- | tests/fuzz/cold-transaction.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/fuzz/cold-transaction.cpp b/tests/fuzz/cold-transaction.cpp index 135343704..bf5fba1f7 100644 --- a/tests/fuzz/cold-transaction.cpp +++ b/tests/fuzz/cold-transaction.cpp @@ -50,11 +50,8 @@ BEGIN_INIT_SIMPLE_FUZZER() END_INIT_SIMPLE_FUZZER() BEGIN_SIMPLE_FUZZER() - std::string s((const char*)buf, len); tools::wallet2::unsigned_tx_set exported_txs; - std::stringstream iss; - iss << s; - binary_archive<false> ar(iss); + binary_archive<false> ar{{buf, len}}; ::serialization::serialize(ar, exported_txs); std::vector<tools::wallet2::pending_tx> ptx; bool success = wallet->sign_tx(exported_txs, "/tmp/cold-transaction-test-signed", ptx); |
