mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
Fix: Wallet's transaction had null blockhash on greenfield
This commit is contained in:
parent
7faf95552a
commit
192d339a79
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ namespace BTCPayServer.Services.Wallets
|
||||||
SeenAt = row.seen_at,
|
SeenAt = row.seen_at,
|
||||||
TransactionId = uint256.Parse(row.tx_id),
|
TransactionId = uint256.Parse(row.tx_id),
|
||||||
Confirmations = row.confs,
|
Confirmations = row.confs,
|
||||||
BlockHash = string.IsNullOrEmpty(row.asset_id) ? null : uint256.Parse(row.blk_id)
|
BlockHash = string.IsNullOrEmpty(row.blk_id) ? null : uint256.Parse(row.blk_id)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return lines;
|
return lines;
|
||||||
|
|
Loading…
Add table
Reference in a new issue