Skip to content
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

Merged
merged 4 commits into from
Oct 31, 2023

Conversation

azarovh
Copy link
Member

@azarovh azarovh commented Oct 29, 2023

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.

@azarovh azarovh marked this pull request as draft October 30, 2023 09:56
@azarovh azarovh force-pushed the fix/issuance_and_supply_change_fee branch from 37ffd5b to b29a9eb Compare October 30, 2023 16:45
@azarovh azarovh marked this pull request as ready for review October 30, 2023 16:47

match latest_token_version {
TokenIssuanceVersion::V0 => {
check_issuance_fee_burn_v0(chain_config, tx)?;
Copy link
Contributor

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.

Copy link
Member Author

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(
Copy link
Contributor

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?

Copy link
Member Author

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

Copy link
Contributor

@TheQuantumPhysicist TheQuantumPhysicist left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good.

@azarovh azarovh merged commit bd3165f into master Oct 31, 2023
@azarovh azarovh deleted the fix/issuance_and_supply_change_fee branch October 31, 2023 08:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants