diff options
author | Lee Clagett <code@leeclagett.com> | 2016-12-20 12:51:27 -0500 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2016-12-20 12:51:27 -0500 |
commit | d55e2266ca41090e2201786e077df397718184af (patch) | |
tree | ba759aaa4923580a9bd9068b5347906e8aad55ee /tests/unit_tests | |
parent | Merge pull request #1475 (diff) | |
download | monero-d55e2266ca41090e2201786e077df397718184af.tar.xz |
Fixed uninitialized valgrind errors in serialization tests
Diffstat (limited to 'tests/unit_tests')
-rw-r--r-- | tests/unit_tests/serialization.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit_tests/serialization.cpp b/tests/unit_tests/serialization.cpp index f8afb2e94..70757dfc1 100644 --- a/tests/unit_tests/serialization.cpp +++ b/tests/unit_tests/serialization.cpp @@ -630,9 +630,11 @@ TEST(Serialization, serializes_ringct_types) tx0.set_null(); tx0.version = 2; - cryptonote::txin_to_key txin_to_key1; + cryptonote::txin_to_key txin_to_key1{}; + txin_to_key1.amount = 100; txin_to_key1.key_offsets.resize(4); - cryptonote::txin_to_key txin_to_key2; + cryptonote::txin_to_key txin_to_key2{}; + txin_to_key2.amount = 200; txin_to_key2.key_offsets.resize(4); tx0.vin.push_back(txin_to_key1); tx0.vin.push_back(txin_to_key2); |