Skip to content

Commit 952872d

Browse files
authored
Merge pull request #1316 from galacticcouncil/fix_claim_account_propagation
fix: Propagate claim_account extrinsics
2 parents a4678d7 + 30f7cb6 commit 952872d

5 files changed

Lines changed: 6 additions & 7 deletions

File tree

Cargo.lock

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

pallets/evm-accounts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-evm-accounts"
3-
version = "1.4.3"
3+
version = "1.4.4"
44
authors = ["GalacticCouncil"]
55
edition = "2021"
66
license = "Apache-2.0"

pallets/evm-accounts/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,7 @@ pub mod pallet {
242242
.priority(UNSIGNED_TXS_PRIORITY)
243243
// use account as "provides" so more than one unsigned extrinsic can be placed in the TX pool
244244
.and_provides([Encode::encode(user)])
245-
.longevity(3)
246-
.propagate(false)
245+
.longevity(64_u64)
247246
.build()
248247
};
249248

runtime/hydradx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hydradx-runtime"
3-
version = "376.0.0"
3+
version = "377.0.0"
44
authors = ["GalacticCouncil"]
55
edition = "2021"
66
license = "Apache 2.0"

runtime/hydradx/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
122122
spec_name: create_runtime_str!("hydradx"),
123123
impl_name: create_runtime_str!("hydradx"),
124124
authoring_version: 1,
125-
spec_version: 376,
125+
spec_version: 377,
126126
impl_version: 0,
127127
apis: RUNTIME_API_VERSIONS,
128128
transaction_version: 1,

0 commit comments

Comments
 (0)