diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-08-22 22:37:08 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-08-22 22:37:08 -0500 |
commit | 080fc69435371ceec1fffbf658f82a22c5ceff6a (patch) | |
tree | bf9c941ca7125d09bf4bb00eee87ecbcfd73abcf /tests/core_tests/chaingen.cpp | |
parent | Merge pull request #8435 (diff) | |
parent | feat(trezor): add HF15 support, BP+ (diff) | |
download | monero-080fc69435371ceec1fffbf658f82a22c5ceff6a.tar.xz |
Merge pull request #8299
a0df140 feat(trezor): add HF15 support, BP+ (Dusan Klinec)
Diffstat (limited to 'tests/core_tests/chaingen.cpp')
-rw-r--r-- | tests/core_tests/chaingen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_tests/chaingen.cpp b/tests/core_tests/chaingen.cpp index 144e87bc2..9bcae19d0 100644 --- a/tests/core_tests/chaingen.cpp +++ b/tests/core_tests/chaingen.cpp @@ -661,7 +661,7 @@ void block_tracker::process(const block* blk, const transaction * tx, size_t i) for (size_t j = 0; j < tx->vout.size(); ++j) { const tx_out &out = tx->vout[j]; - if (typeid(cryptonote::txout_to_key) != out.target.type()) { // out_to_key + if (typeid(cryptonote::txout_to_key) != out.target.type() && typeid(cryptonote::txout_to_tagged_key) != out.target.type()) { continue; } |