mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 20:59:23 +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>,
|
||
|
|
}
|
||
|
|
}
|