Skip to content

Commit

Permalink
Fix "binary operation == cannot be applied to type `Option<ChildStd…
Browse files Browse the repository at this point in the history
…err>`"
  • Loading branch information
shesek committed Apr 22, 2022
1 parent c2c9a78 commit 6eac0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ impl ElectrumD {
// Wait for the RPC server to respond
while client.call::<Value>("version", &noargs).is_err() {
thread::sleep(Duration::from_millis(250));
assert_eq!(process.stderr, None);
assert!(process.stderr.is_none());
}

// Create and load the default wallet
Expand Down

0 comments on commit 6eac0b7

Please sign in to comment.