Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
magecnion committed Jan 24, 2025
1 parent f5d7972 commit 35c81ee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,5 @@ try-runtime = [
"polkadot-service/try-runtime",
"sp-runtime/try-runtime",
]

warp-sync-test = []
10 changes: 6 additions & 4 deletions node/src/sync_test.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
use reqwest::blocking::Client;
use serde_json::{json, Value};
use std::io::{BufRead, BufReader};
use std::process::{Child, Command, Stdio};
use std::thread;
use std::time::{Duration, Instant};
use std::{
io::{BufRead, BufReader},
process::{Child, Command, Stdio},
thread,
time::{Duration, Instant},
};

const RPC_PORT: u32 = 9933;
const TIMEOUT: Duration = Duration::from_secs(80); // It usually takes around 60 seconds to sync
Expand Down

0 comments on commit 35c81ee

Please sign in to comment.