fix smartifier bug

This commit is contained in:
Kukks
2023-03-29 10:35:13 +02:00
parent ffc333828b
commit b79ee73424
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ public class Smartifier
var tx = await Transactions.GetOrAdd(coin.OutPoint.Hash, async uint256 =>
{
var unsmartTx = await CachedTransactions[coin.OutPoint.Hash];
if (unsmartTx is null)
if (unsmartTx?.Transaction is null)
{
return null;
}