Skip to content

Commit 4155dfc

Browse files
authored
Subsidise more pallets. (#1840)
* Subsidise more pallets. * Fix typo.
1 parent 3b92d30 commit 4155dfc

6 files changed

Lines changed: 8 additions & 5 deletions

File tree

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-rc3"
3+
version = "7.3.0-rc4"
44
authors = ["PolymeshAssociation"]
55
build = "build.rs"
66
edition = "2021"

pallets/runtime/common/src/runtime.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,11 @@ macro_rules! misc_pallet_impls {
321321
fn allowed(call: &RuntimeCall, nested: bool) -> bool {
322322
match call {
323323
RuntimeCall::Asset(_) => true,
324+
RuntimeCall::CapitalDistribution(_) => true,
325+
RuntimeCall::Checkpoint(_) => true,
324326
RuntimeCall::ComplianceManager(_) => true,
325327
RuntimeCall::CorporateAction(_) => true,
328+
RuntimeCall::CorporateBallot(_) => true,
326329
RuntimeCall::ExternalAgents(_) => true,
327330
RuntimeCall::Portfolio(_) => true,
328331
RuntimeCall::Settlement(_) => true,

pallets/runtime/develop/src/runtime.rs

Lines changed: 1 addition & 1 deletion
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_002,
58+
spec_version: 7_003_003,
5959
impl_version: 0,
6060
apis: RUNTIME_API_VERSIONS,
6161
transaction_version: 7,

pallets/runtime/mainnet/src/runtime.rs

Lines changed: 1 addition & 1 deletion
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_002,
56+
spec_version: 7_003_003,
5757
impl_version: 0,
5858
apis: RUNTIME_API_VERSIONS,
5959
transaction_version: 7,

pallets/runtime/testnet/src/runtime.rs

Lines changed: 1 addition & 1 deletion
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_002,
58+
spec_version: 7_003_003,
5959
impl_version: 0,
6060
apis: RUNTIME_API_VERSIONS,
6161
transaction_version: 7,

0 commit comments

Comments
 (0)