diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2022-08-07 21:35:01 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2022-08-07 21:35:01 -0500 |
| commit | 72490ca04f1162e13b5140186b9fb849225aaa61 (patch) | |
| tree | 6a16c89596200120d2de610fe33ffb5fc4393b4b /tests/core_tests/chaingen.cpp | |
| parent | a50cceb8d0db3d7e6c982fb26893cdc80de32e0e (diff) | |
| parent | 6075be9cc8c3e8aacfa1428816e86dc623a72600 (diff) | |
| download | monzero-core-72490ca04f1162e13b5140186b9fb849225aaa61.tar.gz monzero-core-72490ca04f1162e13b5140186b9fb849225aaa61.tar.xz monzero-core-72490ca04f1162e13b5140186b9fb849225aaa61.zip | |
Merge pull request #8483
6075be9 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; } |
