We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 996fe2a commit c42fc5fCopy full SHA for c42fc5f
Readme.md
@@ -3,8 +3,9 @@
3
Utility to run a regtest electrum wallet daemon process, useful in integration testing environment.
4
5
```rust
6
-let electrumd = electrumd::ElectrumD::new(electrumd::downloaded_exe_path().unwrap()).unwrap();
7
-assert_eq!(0, bitcoind.client.get_blockchain_info().unwrap().blocks);
+let electrum_wallet = electrumd::ElectrumD::new(electrumd::downloaded_exe_path().unwrap()).unwrap();
+
8
+let addr = electrum_wallet.call("createnewaddress", &json!([]))
9
```
10
11
Forked from [@RCasatta's `bitcoind`](https://github.com/RCasatta/bitcoind).
0 commit comments