Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use stabilized transaction calls #784

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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