Introduce IgnoredIssuance into Gilts (#8299)

* IgnoredIssuance

* Fixes

* Fixes
This commit is contained in:
Gavin Wood
2021-03-09 14:03:47 +01:00
committed by GitHub
parent 643a0ecd38
commit a49210693b
4 changed files with 40 additions and 5 deletions
+2
View File
@@ -1046,6 +1046,7 @@ impl pallet_assets::Config for Runtime {
}
parameter_types! {
pub IgnoredIssuance: Balance = Treasury::pot();
pub const QueueCount: u32 = 300;
pub const MaxQueueLen: u32 = 1000;
pub const FifoQueueLen: u32 = 500;
@@ -1061,6 +1062,7 @@ impl pallet_gilt::Config for Runtime {
type AdminOrigin = frame_system::EnsureRoot<AccountId>;
type Deficit = ();
type Surplus = ();
type IgnoredIssuance = IgnoredIssuance;
type QueueCount = QueueCount;
type MaxQueueLen = MaxQueueLen;
type FifoQueueLen = FifoQueueLen;