Skip to content

Commit 81b9e26

Browse files
authored
Merge pull request #643 from Cerebellum-Network/release/7.3.11
Fixed low Transaction fee issue, removed depreicated depndencies and implemented
2 parents 8fa1320 + 5f04ce3 commit 81b9e26

File tree

7 files changed

+166
-68
lines changed

7 files changed

+166
-68
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- [C] Changes is `Cere` Runtime
1111
- [D] Changes is `Cere Dev` Runtime
1212

13+
## [7.3.11]
14+
15+
- [C,D] Fixed low Transaction fee issue, removed deprecated dependencies and implemented.
16+
1317
## [7.3.10]
1418

1519
- [C,D] Redirect Dust Balances to Treasury Instead of Burning to Fix total Issuance issue.

Cargo.lock

Lines changed: 21 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "7.3.10"
2+
version = "7.3.11"
33
authors = ["Cerebellum-Network"]
44
edition = "2021"
55
homepage = "https://cere.network/"
@@ -177,6 +177,7 @@ substrate-frame-rpc-system = { version = "43.0.0", default-features = false }
177177
substrate-state-trie-migration-rpc = { version = "42.0.0", default-features = false }
178178
substrate-test-utils = { version = "3.0.0", default-features = false }
179179
substrate-wasm-builder = { version = "26.0.1", default-features = false }
180+
pallet-delegated-staking = { version = "7.0.0", default-features = false }
180181

181182
# Cere Dependenies
182183
cere-client = { path = "node/client" }

runtime/cere-dev/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ pallet-child-bounties = { workspace = true }
3939
pallet-collective = { workspace = true }
4040
pallet-contracts = { workspace = true }
4141
pallet-conviction-voting = { workspace = true }
42+
pallet-delegated-staking = { workspace = true }
4243
pallet-democracy = { workspace = true }
4344
pallet-election-provider-multi-phase = { workspace = true }
4445
pallet-election-provider-support-benchmarking = { workspace = true, optional = true }
@@ -215,6 +216,7 @@ std = [
215216
"pallet-token-gateway/std",
216217
"pallet-fee-handler/std",
217218
"pallet-migrations/std",
219+
"pallet-delegated-staking/std",
218220
]
219221
runtime-benchmarks = [
220222
"frame-benchmarking/runtime-benchmarks",
@@ -269,6 +271,7 @@ runtime-benchmarks = [
269271
"pallet-origins/runtime-benchmarks",
270272
"pallet-token-gateway/runtime-benchmarks",
271273
"pallet-migrations/runtime-benchmarks",
274+
"pallet-delegated-staking/runtime-benchmarks",
272275
]
273276
try-runtime = [
274277
"frame-executive/try-runtime",
@@ -328,6 +331,7 @@ try-runtime = [
328331
"ismp-grandpa/try-runtime",
329332
"pallet-token-gateway/try-runtime",
330333
"pallet-migrations/try-runtime",
334+
"pallet-delegated-staking/try-runtime",
331335
]
332336

333337
# Enable the metadata hash generation in the wasm builder.

0 commit comments

Comments
 (0)