-
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.
introduce community treasuries MVP (#401)
* plain treasuries pallet * add rpc * fmt * refactor to allow global community by not supplying cid * intermediate imple of democracy SpendNative * builds * fmt * add unit test for spend_local * fmt * taplo * revert bogus edit * bump crate versions to 13.3 * bump crate versions to 13.3... * fix benchmarking trait bounds * fmt * remove wrong comment * fix crate naming * fix features * add test * fmt
- Loading branch information
Showing
19 changed files
with
620 additions
and
28 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 = "pallet-encointer-democracy" | ||
version = "13.2.0" | ||
version = "13.3.0" | ||
authors = ["Encointer Association <[email protected]>"] | ||
edition = "2021" | ||
description = "Democracy pallet for the Encointer blockchain runtime" | ||
|
@@ -19,19 +19,21 @@ pallet-encointer-ceremonies = { workspace = true } | |
pallet-encointer-communities = { workspace = true } | ||
pallet-encointer-reputation-commitments = { workspace = true } | ||
pallet-encointer-scheduler = { workspace = true } | ||
pallet-encointer-treasuries = { workspace = true } | ||
|
||
# substrate deps | ||
frame-support = { workspace = true } | ||
frame-system = { workspace = true } | ||
pallet-timestamp = { workspace = true } | ||
sp-core = { workspace = true } | ||
sp-io = { workspace = true } | ||
sp-runtime = { workspace = true } | ||
sp-std = { workspace = true } | ||
|
||
# benchmarking | ||
frame-benchmarking = { workspace = true, optional = true } | ||
sp-application-crypto = { workspace = true, optional = true } | ||
sp-core = { workspace = true, optional = true } | ||
|
||
|
||
[dev-dependencies] | ||
approx = { workspace = true } | ||
|
@@ -71,7 +73,6 @@ runtime-benchmarks = [ | |
"pallet-encointer-communities/runtime-benchmarks", | ||
"pallet-encointer-scheduler/runtime-benchmarks", | ||
"sp-application-crypto", | ||
"sp-core", | ||
] | ||
try-runtime = [ | ||
"frame-system/try-runtime", | ||
|
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.