- Fixed: FLO multisig pipeline not closing (disabling) upon successful broadcast
This commit is contained in:
sairajzero 2023-03-10 02:33:22 +05:30
parent 17cee7be81
commit ffa7567964

View File

@ -1462,7 +1462,7 @@
data.txid = unparsed.message;
//the following check is done on parallel (in background) instead of sync
getChat(pipeID).then(result => {
var tx_hex_list = Object.keys(result).sort().map(i => result[i].tx_hex).filter(x => x).shift();
var tx_hex_list = Object.keys(result).sort().map(i => result[i].tx_hex).filter(x => x);
let tx_hex_inital = tx_hex_list[0],
tx_hex_final = tx_hex_list.pop();
if (floBlockchainAPI.checkIfSameTx(tx_hex_inital, tx_hex_final) &&