mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
Dont calculate fee for conaibase txs
This commit is contained in:
parent
ebc199e040
commit
189809831a
2 changed files with 3 additions and 3 deletions
|
@ -1324,7 +1324,7 @@ namespace xmreg {
|
|||
// get mixin number
|
||||
txd.mixin_no = get_mixin_no(tx);
|
||||
|
||||
if (!coinbase)
|
||||
if (!coinbase && tx.vin.size() > 1)
|
||||
{
|
||||
// get tx fee
|
||||
txd.fee = get_tx_fee(tx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue