mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-29 14:05:59 +00:00
9 lines
182 B
Rust
9 lines
182 B
Rust
|
use serai_db::{Get, DbTxn, create_db};
|
||
|
|
||
|
create_db! {
|
||
|
BitcoinProcessor {
|
||
|
LatestBlockToYieldAsFinalized: () -> u64,
|
||
|
ScriptPubKey: (tx: [u8; 32], vout: u32) -> Vec<u8>,
|
||
|
}
|
||
|
}
|