Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tao-stones committed Jan 30, 2024
1 parent c8cdd00 commit 2fd503a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdk/src/fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,13 @@ impl FeeStructure {
pub fn calculate_fee(
&self,
message: &SanitizedMessage,
_unused: u64,
lamports_per_signature: u64,
budget_limits: &FeeBudgetLimits,
include_loaded_account_data_size_in_fee: bool,
) -> u64 {
self.calculate_fee_details(
message,
lamports_per_signature,
budget_limits,
include_loaded_account_data_size_in_fee,
)
Expand All @@ -109,6 +110,7 @@ impl FeeStructure {
pub fn calculate_fee_details(
&self,
message: &SanitizedMessage,
_lamports_per_signature: u64,
budget_limits: &FeeBudgetLimits,
include_loaded_account_data_size_in_fee: bool,
) -> FeeDetails {
Expand Down

0 comments on commit 2fd503a

Please sign in to comment.