We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lamports_per_signature
nonce account holds a fee_calculator that provides lamports_per_signature. However this lamports_per_signature is not used:
fee_calculator
calculate_fee(...)
fee_structure.lamports_per_siganture
process_message(...)
lamports_per_signature()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem
nonce account holds a
fee_calculator
that provideslamports_per_signature
. However thislamports_per_signature
is not used:calculate_fee(...)
usesfee_structure.lamports_per_siganture
to calculate signature fee;process_message(...)
passes last block_hash'slamports_per_signature
to transaction processing.Proposed Solution
fee_calculator
andlamports_per_signature()
from nonce accountlamports_per_signature
before callingcalculate_fee(...)
The text was updated successfully, but these errors were encountered: