-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
I10-unconfirmedIssue might be valid, but it's not yet known.Issue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.The node fails to follow expected behavior.T8-polkadotThis PR/Issue is related to/affects the Polkadot network.This PR/Issue is related to/affects the Polkadot network.
Description
Is there an existing issue?
- I have searched the existing issues
Experiencing problems? Have you tried our Stack Exchange first?
- This is not a support question.
Description of bug
On the Kusama relay chain, burning funds via balances.burn
burns more than expected.
Steps to reproduce
- Fork Kusama relay with
chopsticks
- Note the current total issuance via
balances.totalIssuance()
; let this number be namedold

- Using the Alice dev account, call
balances.burn
for 1 KSM

- Check
balances.totalIssuance()
again; let this number benew

- Verify that
old - new
does not equal1 * 10^12 = 1 KSM
, when it should- let
fee = 410589072
be the fee applied - In fact,
old - new = 82117816
, which happens to be very close tofloor((fee * 2) / 10) = 82117814
- let
Metadata
Metadata
Assignees
Labels
I10-unconfirmedIssue might be valid, but it's not yet known.Issue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.The node fails to follow expected behavior.T8-polkadotThis PR/Issue is related to/affects the Polkadot network.This PR/Issue is related to/affects the Polkadot network.