-
Notifications
You must be signed in to change notification settings - Fork 19
Preparations for moving pallet-evm-balances and pallet-evm-system into humanode repo
#1422
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
Merged
dmitrylavrenov
merged 18 commits into
apply-evm-balances-evm-system-from-frontier
from
preparation-move-evmbalances-evmsystem
Feb 9, 2025
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
901669b
Fix toml files
dmitrylavrenov 4d4fe73
Properly use codec
dmitrylavrenov 8034784
Edit libs docs
dmitrylavrenov 07a9ea6
Fix features
dmitrylavrenov 5404f45
Update features snapshot
dmitrylavrenov cffbf53
Fix typo
dmitrylavrenov 033873d
Allow missing_docs_in_private_items for pallets
dmitrylavrenov 106819f
Fix missing docs at pallet-evm-system
dmitrylavrenov a33fa3b
Fix math side affect at pallet-evm-system
dmitrylavrenov 74407f0
Fix clippy in tests at pallet-evm-system
dmitrylavrenov 1cdef3a
Edit tests related docs
dmitrylavrenov 7a66a88
Fix clippy in tests at pallet-evm-balances
dmitrylavrenov 422d97d
Fix missing docs at pallet-evm-balances
dmitrylavrenov e3aa948
Fix math side affect at pallet-evm-balances
dmitrylavrenov 7f80ad6
Fix clippy
dmitrylavrenov e4be752
Switch to local pallet-evm-balances and pallet-evm-system
dmitrylavrenov 0c81cc9
Fix fmt
dmitrylavrenov d3767c8
Prettify try_mutate_account_handling_dust usage
dmitrylavrenov 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -1,50 +1,47 @@ | ||
| [package] | ||
| name = "pallet-evm-balances" | ||
| version = "1.0.0-dev" | ||
| license = "Apache-2.0" | ||
| description = "FRAME EVM BALANCES pallet." | ||
| edition = { workspace = true } | ||
| repository = { workspace = true } | ||
|
|
||
| [package.metadata.docs.rs] | ||
| targets = ["x86_64-unknown-linux-gnu"] | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
| publish = false | ||
|
|
||
| [dependencies] | ||
| log = { workspace = true, default-features = false } | ||
| scale-codec = { package = "parity-scale-codec", workspace = true } | ||
| scale-info = { workspace = true } | ||
| # Substrate | ||
| codec = { workspace = true } | ||
| frame-support = { workspace = true } | ||
| frame-system = { workspace = true } | ||
| scale-info = { workspace = true } | ||
| sp-runtime = { workspace = true } | ||
| sp-std = { workspace = true } | ||
|
|
||
| [dev-dependencies] | ||
| pallet-evm-system = { path = "../pallet-evm-system", features = ["default"] } | ||
|
|
||
| fp-evm = { workspace = true } | ||
| pallet-evm = { workspace = true } | ||
| pallet-evm-system = { workspace = true } | ||
| pallet-timestamp = { workspace = true } | ||
| sp-core = { workspace = true } | ||
| sp-io = { workspace = true } | ||
|
|
||
| [features] | ||
| default = ["std"] | ||
| std = [ | ||
| "log/std", | ||
| "scale-codec/std", | ||
| "scale-info/std", | ||
| # Substrate | ||
| "frame-support/std", | ||
| "frame-system/std", | ||
| "pallet-timestamp/std", | ||
| "sp-runtime/std", | ||
| "sp-std/std", | ||
| # Frontier | ||
| "fp-evm/std", | ||
| "pallet-evm/std", | ||
| "pallet-evm-system/std", | ||
| "codec/std", | ||
| "fp-evm/std", | ||
| "frame-support/std", | ||
| "frame-system/std", | ||
| "pallet-evm-system/std", | ||
| "pallet-evm/std", | ||
| "pallet-timestamp/std", | ||
| "scale-info/std", | ||
| "sp-core/std", | ||
| "sp-io/std", | ||
| "sp-runtime/std", | ||
| "sp-std/std", | ||
| ] | ||
| try-runtime = [ | ||
| "frame-support/try-runtime", | ||
| "frame-system/try-runtime", | ||
| "frame-support/try-runtime", | ||
| "frame-system/try-runtime", | ||
| "pallet-evm-system/try-runtime", | ||
| "pallet-evm/try-runtime", | ||
| "pallet-timestamp/try-runtime", | ||
| "sp-runtime/try-runtime", | ||
| ] |
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
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.
Uh oh!
There was an error while loading. Please reload this page.