-
Notifications
You must be signed in to change notification settings - Fork 319
Custom dust collection type in subtensor #2707
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
Open
gztensor
wants to merge
1
commit into
devnet-ready
Choose a base branch
from
feat/account-dust-collection
base: devnet-ready
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| #![allow(clippy::unwrap_used)] | ||
|
|
||
| use frame_support::traits::fungible::{Inspect, Mutate}; | ||
| use frame_support::traits::tokens::Preservation; | ||
| use node_subtensor_runtime::{Balances, BuildStorage, Runtime, RuntimeGenesisConfig}; | ||
| use sp_core::crypto::AccountId32; | ||
| use subtensor_runtime_common::TaoBalance; | ||
|
|
||
| fn new_test_ext() -> sp_io::TestExternalities { | ||
| let mut ext: sp_io::TestExternalities = RuntimeGenesisConfig { | ||
| ..Default::default() | ||
| } | ||
| .build_storage() | ||
| .unwrap() | ||
| .into(); | ||
| ext.execute_with(|| frame_system::Pallet::<Runtime>::set_block_number(1)); | ||
| ext | ||
| } | ||
|
|
||
| fn add_balance_to_account(account: &AccountId32, tao: TaoBalance) { | ||
| let credit = pallet_subtensor::Pallet::<Runtime>::mint_tao(tao); | ||
| let _ = pallet_subtensor::Pallet::<Runtime>::spend_tao(account, credit, tao).unwrap(); | ||
| } | ||
|
|
||
| #[test] | ||
| fn balances_dust_removal_updates_subtensor_total_issuance() { | ||
| new_test_ext().execute_with(|| { | ||
| let origin = AccountId32::new([1u8; 32]); | ||
| let destination = AccountId32::new([2u8; 32]); | ||
| let existential_deposit = TaoBalance::from(500u64); | ||
| let dust = TaoBalance::from(1u64); | ||
| let transfer_amount = existential_deposit; | ||
|
|
||
| add_balance_to_account(&origin, transfer_amount + dust); | ||
|
|
||
| let balances_issuance_before = Balances::total_issuance(); | ||
| let subtensor_issuance_before = pallet_subtensor::Pallet::<Runtime>::get_total_issuance(); | ||
| assert_eq!(balances_issuance_before, subtensor_issuance_before); | ||
|
|
||
| <Balances as Mutate<AccountId32>>::transfer( | ||
| &origin, | ||
| &destination, | ||
| transfer_amount, | ||
| Preservation::Expendable, | ||
| ) | ||
| .unwrap(); | ||
|
|
||
| assert_eq!(Balances::total_balance(&origin), 0u64.into()); | ||
| assert_eq!(Balances::total_balance(&destination), transfer_amount); | ||
| assert_eq!(balances_issuance_before - Balances::total_issuance(), dust); | ||
| assert_eq!( | ||
| subtensor_issuance_before - pallet_subtensor::Pallet::<Runtime>::get_total_issuance(), | ||
| dust | ||
| ); | ||
| assert_eq!( | ||
| Balances::total_issuance(), | ||
| pallet_subtensor::Pallet::<Runtime>::get_total_issuance() | ||
| ); | ||
| }); | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
[HIGH] Bump spec_version for this runtime behavior change
This changes runtime execution by installing a Balances
DustRemovalhook that mutates SubtensorTotalIssuance, but the PR does not bumpVERSION.spec_versioninruntime/src/lib.rs(it remains414). Runtime-affecting changes need a newspec_version; otherwise upgraded nodes can consider their native runtime compatible with the existing on-chain Wasm while executing different accounting logic, which is a consensus-safety hazard. Bumpspec_versionin the same PR.