-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete_token extrinsic and token cleanup (#143)
* First pass at delete token feature and cleanup * Tests for on_idle * Update readme and weights * Fix various weight issues * Update utxo_nft weights * fix typo
- Loading branch information
1 parent
9ab3dfc
commit 3aa65df
Showing
14 changed files
with
624 additions
and
65 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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 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 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,10 @@ | ||
use codec::MaxEncodedLen; | ||
use codec::{Decode, Encode}; | ||
use frame_support::RuntimeDebug; | ||
use scale_info::TypeInfo; | ||
|
||
#[derive(Encode, Decode, Default, RuntimeDebug, MaxEncodedLen, TypeInfo, Clone, PartialEq)] | ||
pub struct GraveyardState { | ||
pub(crate) start_index: u64, | ||
pub(crate) end_index: u64 | ||
} |
Oops, something went wrong.