10 lines
199 B
Rust
10 lines
199 B
Rust
|
|
use bitcoin_hashes::hash_newtype;
|
||
|
|
use bitcoin_hashes::sha256d;
|
||
|
|
|
||
|
|
hash_newtype!(
|
||
|
|
PoolID,
|
||
|
|
sha256d::Hash,
|
||
|
|
32,
|
||
|
|
doc = "An identifier for a Cauldron pool (hash of its creation outpoint)"
|
||
|
|
);
|