From 49d1d665f050b692f9f62e9b4d4213056cbe38f3 Mon Sep 17 00:00:00 2001 From: Fahrrader Date: Mon, 20 Dec 2021 09:57:57 +0000 Subject: [PATCH] refactor: set CollectionCreationPrice to constant in pallet-common --- --- a/pallets/common/src/lib.rs +++ b/pallets/common/src/lib.rs @@ -156,9 +156,12 @@ type EvmBackwardsAddressMapping: up_evm_mapping::EvmBackwardsAddressMapping; type Currency: Currency; + + #[pallet::constant] type CollectionCreationPrice: Get< <::Currency as Currency>::Balance, >; + type TreasuryAccountId: Get; } -- gitstuff