Skip to content

Commit 3b92d30

Browse files
Update locking timestamp (#1837)
* Update locking timestamp * Update cargo toml
1 parent 8d3abf9 commit 3b92d30

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polymesh"
3-
version = "7.3.0-rc2"
3+
version = "7.3.0-rc3"
44
authors = ["PolymeshAssociation"]
55
build = "build.rs"
66
edition = "2021"

pallets/runtime/develop/src/runtime.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
5555
authoring_version: 1,
5656
// `spec_version: aaa_bbb_ccd` should match node version v`aaa.bbb.cc`
5757
// N.B. `d` is unpinned from the binary version
58-
spec_version: 7_003_001,
58+
spec_version: 7_003_002,
5959
impl_version: 0,
6060
apis: RUNTIME_API_VERSIONS,
6161
transaction_version: 7,
@@ -94,7 +94,7 @@ parameter_types! {
9494
pub const MaxNumberOfPortfolios: u32 = (10 + 100) * 2;
9595
pub const MaxNumberOfVenueSigners: u32 = 50;
9696
pub const MaxInstructionMediators: u32 = 4;
97-
pub const MaximumLockPeriod: Moment = 1_440_000; // 24 hours
97+
pub const MaximumLockPeriod: Moment = 1_440_000; // 24 min
9898

9999
// Multisig
100100
pub const MaxMultiSigSigners: u32 = 50;

pallets/runtime/mainnet/src/runtime.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
5353
authoring_version: 1,
5454
// `spec_version: aaa_bbb_ccd` should match node version v`aaa.bbb.cc`
5555
// N.B. `d` is unpinned from the binary version
56-
spec_version: 7_003_001,
56+
spec_version: 7_003_002,
5757
impl_version: 0,
5858
apis: RUNTIME_API_VERSIONS,
5959
transaction_version: 7,
@@ -92,7 +92,7 @@ parameter_types! {
9292
pub const MaxNumberOfPortfolios: u32 = (10 + 100) * 2;
9393
pub const MaxNumberOfVenueSigners: u32 = 50;
9494
pub const MaxInstructionMediators: u32 = 4;
95-
pub const MaximumLockPeriod: Moment = 1_440_000; // 24 hours
95+
pub const MaximumLockPeriod: Moment = 86_400_000; // 24 hours
9696

9797
// Multisig
9898
pub const MaxMultiSigSigners: u32 = 50;

pallets/runtime/testnet/src/runtime.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
5555
authoring_version: 1,
5656
// `spec_version: aaa_bbb_ccd` should match node version v`aaa.bbb.cc`
5757
// N.B. `d` is unpinned from the binary version
58-
spec_version: 7_003_001,
58+
spec_version: 7_003_002,
5959
impl_version: 0,
6060
apis: RUNTIME_API_VERSIONS,
6161
transaction_version: 7,
@@ -95,7 +95,7 @@ parameter_types! {
9595
pub const MaxNumberOfPortfolios: u32 = (10 + 100) * 2;
9696
pub const MaxNumberOfVenueSigners: u32 = 50;
9797
pub const MaxInstructionMediators: u32 = 4;
98-
pub const MaximumLockPeriod: Moment = 1_440_000; // 24 hours
98+
pub const MaximumLockPeriod: Moment = 86_400_000; // 24 hours
9999

100100
// Multisig
101101
pub const MaxMultiSigSigners: u32 = 50;

0 commit comments

Comments
 (0)