mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
quick hack patch, continue if we can't find the address (for public key)
This commit is contained in:
parent
7c1c1cba7d
commit
c6010c00ae
1 changed files with 4 additions and 0 deletions
|
@ -296,6 +296,10 @@ mixin FusionWalletInterface {
|
|||
|
||||
if (addr == null) {
|
||||
// A utxo object should always have a non null address.
|
||||
fusion.Utilities.debugPrint(
|
||||
"UTXO ${utxo.txid}:${utxo.vout} address not found. TODO calculate it instead of continuing.",
|
||||
);
|
||||
continue;
|
||||
throw Exception("UTXO ${utxo.txid}:${utxo.vout} address not found");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue