Skip to content

Commit e9e7c75

Browse files
committed
verifier: Switch network to Signet
1 parent 5bc23e8 commit e9e7c75

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

utxo_verifier/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,3 @@ To run the verifier on Signet:
2222
```
2323
cargo run ../contrib/signet_outpoints.sqlite --release
2424
```
25-
26-
On Bitcoin
27-
```
28-
cargo run <path/to/outpoints.sqlite> --release
29-
```

utxo_verifier/src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ mod hasher;
1919
mod job;
2020
mod loader;
2121

22-
pub const NETWORK: Network = Network::Bitcoin;
22+
pub const NETWORK: Network = Network::Signet;
2323
// Signet
24-
// const ASSUME_VALID_HASH: &str = "0000003ca3c99aff040f2563c2ad8f8ec88bd0fd6b8f0895cfaf1ef90353a62c";
24+
const ASSUME_VALID_HASH: &str = "0000003ca3c99aff040f2563c2ad8f8ec88bd0fd6b8f0895cfaf1ef90353a62c";
2525
// Bitcoin
26-
const ASSUME_VALID_HASH: &str = "000000000000000000010b17283c3c400507969a9c2afd1dcf2082ec5cca2880";
27-
const WORKERS: usize = 128;
26+
// const ASSUME_VALID_HASH: &str = "000000000000000000010b17283c3c400507969a9c2afd1dcf2082ec5cca2880";
27+
const WORKERS: usize = 32;
2828
pub const DUP_COINBASE_ONE: &str =
2929
"e3bf3d07d4b0375638d5f1db5255fe07ba2c4cb067cd81b84ee974b6585fb468";
3030
pub const DUP_COINBASE_TWO: &str =

0 commit comments

Comments
 (0)