Skip to content

Commit

Permalink
Enable rpc-cors=all
Browse files Browse the repository at this point in the history
  • Loading branch information
ameba23 committed Nov 29, 2024
1 parent b7e2a8b commit 7d11426
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/testing-utils/src/node_proc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ impl TestNodeProcessBuilder {
let arg = "--rpc-external";
cmd.arg(arg);

let arg = "--rpc-cors=all";
cmd.arg(arg);

let ws_url = format!("ws://127.0.0.1:{ws_port}");

let mut proc = cmd.spawn().map_err(|e| {
Expand Down

0 comments on commit 7d11426

Please sign in to comment.