Skip to content

Commit

Permalink
Make call_polkadot_js_api sync
Browse files Browse the repository at this point in the history
  • Loading branch information
serban300 committed Apr 11, 2024
1 parent 2bc11fb commit a83dc2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/testing/framework/utils/bridges.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function call_polkadot_js_api() {
# With it, it just submits it to the tx pool and exits.
# --nonce -1: means to compute transaction nonce using `system_accountNextIndex` RPC, which includes all
# transaction that are in the tx pool.
polkadot-js-api --noWait --nonce -1 "$@"
polkadot-js-api --nonce -1 "$@" || true
}

function generate_hex_encoded_call_data() {
Expand Down

0 comments on commit a83dc2e

Please sign in to comment.