1
0
Fork 0
mirror of https://github.com/mempool/mempool.git synced 2025-03-16 12:43:33 +01:00
mempool/rust/gbt/src/thread_transaction.rs

14 lines
252 B
Rust
Raw Normal View History

use napi_derive::napi;
2023-06-26 19:29:32 -07:00
#[derive(Debug)]
#[napi(object)]
2023-06-23 16:42:58 -04:00
pub struct ThreadTransaction {
2023-06-23 20:41:39 -04:00
pub uid: u32,
pub order: u32,
pub fee: f64,
2023-06-23 20:41:39 -04:00
pub weight: u32,
pub sigops: u32,
pub effective_fee_per_vsize: f64,
pub inputs: Vec<u32>,
2023-06-29 15:48:40 -07:00
}