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
We should be able to calculate transaction fees using on the following formula:
minimum fee + command fee + tie breaker
The fee also includes values such as
A desired response should include the total fee and the components creating it:
[ { value: 523000, type: 'total' }, { value: 123000, type: 'minFee' }, { value: 500000, type: 'commandFee'} ]
Minimum fee We calculate the minimum fee based on the transaction size.
Command fee We fetch this value from Lisk Service. This value is defined by the blockchain application developer.
Tie breaker This is also a value to fetched. This value takes the transaction pool status into account.
computeMinFee
The text was updated successfully, but these errors were encountered:
Resolved by #4712
Sorry, something went wrong.
reyraa
No branches or pull requests
Description
We should be able to calculate transaction fees using on the following formula:
The fee also includes values such as
A desired response should include the total fee and the components creating it:
Minimum fee
We calculate the minimum fee based on the transaction size.
Command fee
We fetch this value from Lisk Service. This value is defined by the blockchain application developer.
Tie breaker
This is also a value to fetched. This value takes the transaction pool status into account.
Acceptance Criteria
computeMinFee
function from Lisk Elements.The text was updated successfully, but these errors were encountered: