logging on possible bad data

This commit is contained in:
julian 2023-05-16 14:17:12 -06:00
parent a513e90082
commit eac4ee54f1

View file

@ -342,7 +342,17 @@ Future<Map<String, dynamic>> isolateRestore(
spendTxIds.add(txId);
}
} else {
Logging.instance.log(
"Unexpected coin found: $foundCoin",
level: LogLevel.Warning,
);
}
} else {
Logging.instance.log(
"Coin not found in data with the mint tag: $mintTag",
level: LogLevel.Warning,
);
}
}