feat(trezor): add HF15 support, BP+

- BP+ support added for Trezor
- old Trezor firmware version support removed, code cleanup
This commit is contained in:
Dusan Klinec 2022-04-12 02:06:19 +02:00
parent b6a029f222
commit 6075be9cc8
No known key found for this signature in database
GPG key ID: 6337E118CCBCE103
6 changed files with 232 additions and 181 deletions

View file

@ -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;
}