fix(fees): type BlockFeeSummary revenue fields as Balance

This commit is contained in:
erhant
2026-08-20 22:52:41 +03:00
parent 3bfbf7cfbb
commit 632bb64982
3 changed files with 3 additions and 3 deletions
Binary file not shown.
+3 -3
View File
@@ -1,7 +1,7 @@
//! Core data structures and constants for the Fee Program.
use lee_core::{
account::AccountId,
account::{AccountId, Balance},
program::{PdaSeed, ProgramId},
};
use serde::{Deserialize, Serialize};
@@ -17,8 +17,8 @@ const FEE_INBOX_SEED: [u8; 32] = *b"/LEZ/v0.3/FeeSeed/Inbox/0000000/";
pub struct BlockFeeSummary {
pub gas_used_exec: u64,
pub gas_used_stor: u64,
pub revenue_base: u128,
pub revenue_tip: u128,
pub revenue_base: Balance,
pub revenue_tip: Balance,
}
/// The instruction type for the Fee Program.
Binary file not shown.