Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix
  • Loading branch information
kostekIV committed Nov 15, 2022
commit 2de3ccfda9a285c2693c0f15a66d2e0889a756ba
2 changes: 1 addition & 1 deletion .github/scripts/run_e2e_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function set_randomized_test_params {

ARGS=(
--network "container:Node0"
-e NODE_URL="127.0.0.1:9943"
-e NODE_URL="ws://127.0.0.1:9943"
-e RUST_LOG=info
)

Expand Down
2 changes: 1 addition & 1 deletion bin/cliain/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use log::{error, info};
#[clap(version = "1.0")]
struct Config {
/// WS endpoint address of the node to connect to
#[clap(long, default_value = "127.0.0.1:9944")]
#[clap(long, default_value = "ws://127.0.0.1:9944")]
pub node: String,

/// The seed of the key to use for signing calls.
Expand Down