mirror of
https://github.com/mempool/mempool.git
synced 2026-08-16 13:00:49 +02:00
8 lines
142 B
Rust
8 lines
142 B
Rust
use napi_derive::napi;
|
|
|
|
#[derive(Debug)]
|
|
#[napi(object)]
|
|
pub struct ThreadAcceleration {
|
|
pub uid: u32,
|
|
pub delta: f64, // fee delta
|
|
}
|