mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +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,
|
||||
TransactionId = uint256.Parse(row.tx_id),
|
||||
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;
|
||||
|
|
Loading…
Add table
Reference in a new issue