Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #67 from logion-network/feature/move-issuance
Browse files Browse the repository at this point in the history
Token issuance moved to CollectionItemToken
  • Loading branch information
benoitdevos committed Jun 26, 2023
2 parents 2eaa38b + f6a9f90 commit ddba597
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 44 deletions.
82 changes: 41 additions & 41 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub use sp_runtime::{Perbill, Permill};
use frame_support::codec::{Decode, Encode};
use frame_system::EnsureRoot;
use logion_shared::{Beneficiary, CreateRecoveryCallFactory, MultisigApproveAsMultiCallFactory, MultisigAsMultiCallFactory, DistributionKey, LegalFee, EuroCent};
use pallet_logion_loc::migrations::{v14::HashLocPublicData, v15::AddTokenIssuance};
use pallet_logion_loc::migrations::{v14::HashLocPublicData, v15::AddTokenIssuance, v16::MoveTokenIssuance};
use pallet_logion_loc::{LocType, Hasher};
use pallet_multisig::Timepoint;
use scale_info::TypeInfo;
Expand Down Expand Up @@ -125,7 +125,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 145,
spec_version: 146,
impl_version: 2,
apis: RUNTIME_API_VERSIONS,
transaction_version: 5,
Expand Down Expand Up @@ -743,7 +743,7 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
(HashLocPublicData<Runtime>, AddTokenIssuance<Runtime>),
(HashLocPublicData<Runtime>, AddTokenIssuance<Runtime>, MoveTokenIssuance<Runtime>),
>;

#[cfg(feature = "runtime-benchmarks")]
Expand Down

0 comments on commit ddba597

Please sign in to comment.