Skip to content

Commit

Permalink
use intended lamports_per_signature for fee_structure (solana-labs#34845
Browse files Browse the repository at this point in the history
)

use intented lamports_per_signature for fee_struture, instead of using default
  • Loading branch information
tao-stones authored Jan 19, 2024
1 parent a57d612 commit 32a3de0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runtime/src/accounts/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,10 @@ mod tests {
&RentCollector::default(),
error_counters,
&all_features_except(exclude_features),
&FeeStructure::default(),
&FeeStructure {
lamports_per_signature,
..FeeStructure::default()
},
)
}

Expand Down

0 comments on commit 32a3de0

Please sign in to comment.