Skip to content

Commit

Permalink
runtime: enable issuing creator tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaamani committed Aug 31, 2023
1 parent d144823 commit 26e3b21
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ['Joystream contributors']
build = 'build.rs'
edition = '2018'
name = 'joystream-node'
version = '8.3.1'
version = '8.4.0'
default-run = "joystream-node"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = '2018'
name = 'joystream-node-runtime'
# Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1
# {Authoring}.{Spec}.{Impl} of the RuntimeVersion
version = '12.2001.0'
version = '12.2002.0-crt-playground'

[dependencies]
# Third-party dependencies
Expand Down
3 changes: 1 addition & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("joystream-node"),
impl_name: create_runtime_str!("joystream-node"),
authoring_version: 12,
spec_version: 2001,
spec_version: 2002,
impl_version: 0,
apis: crate::runtime_api::EXPORTED_RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -243,7 +243,6 @@ impl Contains<<Runtime as frame_system::Config>::Call> for CallFilter {
..
}) => false,
Call::Content(content::Call::<Runtime>::initialize_channel_transfer { .. }) => false,
Call::Content(content::Call::<Runtime>::issue_creator_token { .. }) => false,
Call::Bounty(bounty::Call::<Runtime>::create_bounty { .. }) => false,
Call::ProposalsCodex(proposals_codex::Call::<Runtime>::create_proposal {
general_proposal_parameters: _,
Expand Down

0 comments on commit 26e3b21

Please sign in to comment.