-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make primitives generic over Index, Hash and Balance (#334)
* make primitives generic over Index and Hash * fix test * make Balance generic * fix staking example * bump primivites version * remove unused versioning
- Loading branch information
Showing
12 changed files
with
113 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ac-primitives" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Supercomputing Systems AG <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
@@ -12,9 +12,9 @@ hex = { version = "0.4.3", default-features = false, features = ["alloc"] } | |
# substrate | ||
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
sp-core = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
sp-runtime = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
sp-std = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" } | ||
|
||
[features] | ||
default = ["std"] | ||
|
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
Oops, something went wrong.