mirror of
https://github.com/vtnerd/monero-lws.git
synced 2025-04-02 20:09:03 +00:00
Fix output_id bug with coinbase transactions (#88)
This commit is contained in:
parent
1d15bba923
commit
f63f185d20
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ namespace lws
|
|||
db::output{
|
||||
db::transaction_link{height, tx_hash},
|
||||
db::output::spend_meta_{
|
||||
db::output_id{out.amount, out_ids.at(index)},
|
||||
db::output_id{tx.version < 2 ? out.amount : 0, out_ids.at(index)},
|
||||
amount,
|
||||
mixin,
|
||||
boost::numeric_cast<std::uint32_t>(index),
|
||||
|
|
Loading…
Reference in a new issue