This commit is contained in:
Hardhat Chad
2025-07-14 14:55:27 -07:00
parent 2719189b5d
commit 31c4da1d6d
3 changed files with 11 additions and 1 deletions

View File

@@ -184,6 +184,9 @@ pub struct CommitEvent {
/// The total amount of hashpower this miner has committed to the block.
pub permit_commitment: u64,
/// The fee paid per hash.
pub fee: u64,
/// The timestamp of the event.
pub ts: i64,
}
@@ -209,6 +212,9 @@ pub struct UncommitEvent {
/// The total amount of hashpower this miner has committed to the block.
pub permit_commitment: u64,
/// The fee paid per hash.
pub fee: u64,
/// The timestamp of the event.
pub ts: i64,
}