@ercworldio/blockchain-shared 1.0.3-dev.3-PROJ-1296.40 → 1.0.3-dev.3-PROJ-1296.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -116,7 +116,7 @@ class MultisigService {
|
|
|
116
116
|
}
|
|
117
117
|
static fn_withdrawal_executed(pool, data) {
|
|
118
118
|
return __awaiter(this, void 0, void 0, function* () {
|
|
119
|
-
const result = yield pool.query(`SELECT multisig.fn_withdrawal_executed($1::text,$2::text,$3::text,$4::text,$5::bigint,$6::boolean,$7::text,$8::text,$9::text,$10::bigint,$11
|
|
119
|
+
const result = yield pool.query(`SELECT multisig.fn_withdrawal_executed($1::text,$2::text,$3::text,$4::text,$5::bigint,$6::boolean,$7::text,$8::text,$9::text,$10::bigint,$11::bigint,$12::numeric)`, [data.p_blockchain, data.p_chain_id, data.p_escrow_contract, data.p_commitment_hash, data.p_request_id, data.p_confirmed, data.p_caller, data.p_sender, data.p_tx_hash, data.p_timestamp, data.p_block_number, data.p_gas_used]);
|
|
120
120
|
if (!result)
|
|
121
121
|
throw new Error(`DB FN error: multisig.fn_withdrawal_executed()`);
|
|
122
122
|
return result.rows[0].fn_withdrawal_executed;
|
package/package.json
CHANGED