-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
Temp fix for issuance and supply change fee in the same tx #1313
Conversation
37ffd5b
to
b29a9eb
Compare
|
||
match latest_token_version { | ||
TokenIssuanceVersion::V0 => { | ||
check_issuance_fee_burn_v0(chain_config, tx)?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm assuming that this will completely die after the fork.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will have to keep it in the testnet so that fee for older blocks is calculated correctly. But for the mainnet I hope this whole module will go away.
@@ -390,6 +432,72 @@ pub fn calculate_tokens_burned_in_outputs( | |||
.ok_or(ConnectTransactionError::BurnAmountSumError(tx.get_id())) | |||
} | |||
|
|||
fn calculate_required_fee_burn( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't mind these gymnastics, considering they're temporary... but wouldn't have been easier to just make a copy of the current input calculation method, and add these to it as subtraction to the total?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure it's rather big, I'd keep it like this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good.
I suggest this as a temporary fix until I implement this logic via ConstraintsAccumulator.
Doing it the right way via ConstraintsAccumulator turns out a bit more complicated than I thought. Also given the complexity of that solution I'm afraid that by rushing it I introduce more bugs than I fix.