Skip to content

Commit

Permalink
Use stabilized transaction calls (#784)
Browse files Browse the repository at this point in the history
* - Use stabilized transaction calls
- Use newer docker image

* Call names have changed
  • Loading branch information
Niederb authored Jul 1, 2024
1 parent ce1a297 commit dfae515
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:

- name: Run latest node
run: |
docker run -p 9944:9944 -p 9933:9933 -p 30333:30333 paritypr/substrate:master-c7bd8804 --dev --rpc-external &
docker run -p 9944:9944 -p 9933:9933 -p 30333:30333 paritypr/substrate:master-1680977e --dev --rpc-external &
- name: Wait until node has started
run: sleep 20s
Expand Down
4 changes: 2 additions & 2 deletions examples/async/examples/unstable_rpc_api_calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ async fn main() {
// available:
let chain_name_request = "chainSpec_v1_chainName";
let chain_genesis_hash_request = "chainSpec_v1_genesisHash";
let transaction_submit_watch = "transaction_unstable_submitAndWatch";
let transaction_unwatch = "transaction_unstable_unwatch";
let transaction_submit_watch = "transactionWatch_v1_submitAndWatch";
let transaction_unwatch = "transactionWatch_v1_unwatch";

let request_vec = [
chain_name_request,
Expand Down

0 comments on commit dfae515

Please sign in to comment.