try again on fuze fail if while condition is still valid

This commit is contained in:
julian 2023-10-18 13:10:19 -06:00
parent ef08f526da
commit 085ac70746

View file

@ -527,12 +527,20 @@ mixin FusionWalletInterface {
}
// Fuse UTXOs.
try {
await _mainFusionObject!.fuse(
inputsFromWallet: coinList,
network: _coin.isTestNet
? fusion.Utilities.testNet
: fusion.Utilities.mainNet,
);
} catch (e, s) {
Logging.instance.log(
"$e\n$s",
level: LogLevel.Error,
);
// just continue on attempt failure
}
}
}