mirror of
https://github.com/mempool/mempool.git
synced 2025-03-15 12:20:28 +01:00
13 lines
252 B
Rust
13 lines
252 B
Rust
use napi_derive::napi;
|
|
|
|
#[derive(Debug)]
|
|
#[napi(object)]
|
|
pub struct ThreadTransaction {
|
|
pub uid: u32,
|
|
pub order: u32,
|
|
pub fee: f64,
|
|
pub weight: u32,
|
|
pub sigops: u32,
|
|
pub effective_fee_per_vsize: f64,
|
|
pub inputs: Vec<u32>,
|
|
}
|