This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Refactor Account Storage into Accounts Pallet #8254
Closed
Closed
Changes from 21 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
00302af
Initial setup
shawntabrizi b650e71
more
shawntabrizi f30ab3b
Merge branch 'master' into shawntabrizi-refactor-accounts
shawntabrizi 4f3634e
fixes
shawntabrizi f0b52de
updates
shawntabrizi 6dc817f
more fixes
shawntabrizi c9be890
expose hashed key for
shawntabrizi 48e2002
Introduce ReferencedAccount
shawntabrizi bfd0016
more ReferencedAccount
shawntabrizi b304543
node-template fix
shawntabrizi 81a7749
Add Basic Account to FRAME System
shawntabrizi 7e1e4c3
start moving tests
shawntabrizi bf6f729
more tests moved
shawntabrizi 049e718
fix system tests
shawntabrizi 7343111
downgrade from frame to pallet
shawntabrizi 2244675
fixing up tests
shawntabrizi c96b5e5
fix more tests
shawntabrizi 27d97cc
fix more tests
shawntabrizi a3d14fe
Update frame/accounts/src/lib.rs
gavofyork 284fc25
Update frame/accounts/src/lib.rs
gavofyork 3ff3748
Update frame/accounts/src/lib.rs
gavofyork e4cd56d
Merge branch 'master' into shawntabrizi-refactor-accounts
shawntabrizi f7ed2ba
fix more tests
shawntabrizi 586bf73
fix more tests
shawntabrizi 02fa345
fix more tests
shawntabrizi 8e889f6
fix more tests
shawntabrizi 3956a23
executor test fixes
shawntabrizi 7c84785
use proper storage item for executor tests
shawntabrizi 1e2185a
more test fixes
shawntabrizi b9fdb7e
move trait impls out of mod pallet
shawntabrizi 9308566
Merge branch 'master' into shawntabrizi-refactor-accounts
shawntabrizi 89303fd
merge patches
shawntabrizi add54ec
fix contract tests
shawntabrizi 031a2b7
more fixes
shawntabrizi ccd5ad1
Merge branch 'master' into shawntabrizi-refactor-accounts
shawntabrizi 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 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
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,40 @@ | ||
[package] | ||
name = "pallet-accounts" | ||
version = "3.0.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
homepage = "https://substrate.dev" | ||
repository = "https://github.com/paritytech/substrate/" | ||
description = "FRAME accounts module" | ||
readme = "README.md" | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } | ||
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" } | ||
frame-support = { version = "3.0.0", default-features = false, path = "../support" } | ||
frame-system = { version = "3.0.0", default-features = false, path = "../system" } | ||
log = { version = "0.4.14", default-features = false } | ||
|
||
[dev-dependencies] | ||
serde = { version = "1.0.101", features = ["derive"] } | ||
sp-core = { version = "3.0.0", path = "../../primitives/core" } | ||
sp-io = { version = "3.0.0", path = "../../primitives/io" } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"codec/std", | ||
"sp-std/std", | ||
"frame-support/std", | ||
"frame-system/std", | ||
"log/std", | ||
] | ||
runtime-benchmarks = [ | ||
"frame-system/runtime-benchmarks", | ||
"frame-support/runtime-benchmarks", | ||
] | ||
try-runtime = ["frame-support/try-runtime"] |
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.
name suggestion:
AccountReferences
?