mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-12-01 08:54:50 -05:00
fix deposit tx not found error when confirmed before relayed (#1942)
This commit is contained in:
parent
0c1e4f31af
commit
5f3e366920
1 changed files with 5 additions and 1 deletions
|
|
@ -180,7 +180,11 @@ public class ArbitratorProcessDepositRequest extends TradeTask {
|
|||
}
|
||||
|
||||
// relay txs
|
||||
monerod.relayTxsByHash(txHashes);
|
||||
try {
|
||||
monerod.relayTxsByHash(txHashes); // call will error if txs are already confirmed, but they're still relayed
|
||||
} catch (Exception e) {
|
||||
log.warn("Error relaying deposit txs: " + e.getMessage());
|
||||
}
|
||||
depositTxsRelayed = true;
|
||||
|
||||
// update trade state
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue