From 23db3479a09102d6a6fa8eeec9f6a6dc0f699ba3 Mon Sep 17 00:00:00 2001 From: Shawn Tabrizi Date: Fri, 16 Apr 2021 14:00:23 -0400 Subject: [PATCH] reduce min vested transfer by 100x (#2891) --- polkadot/runtime/kusama/src/lib.rs | 2 +- polkadot/runtime/polkadot/src/lib.rs | 2 +- polkadot/runtime/westend/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 35c60e23cd..f8c111947e 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -829,7 +829,7 @@ impl pallet_society::Config for Runtime { } parameter_types! { - pub const MinVestedTransfer: Balance = 100 * DOLLARS; + pub const MinVestedTransfer: Balance = 1 * DOLLARS; } impl pallet_vesting::Config for Runtime { diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 9fd09b1db8..d2d8997ef3 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -785,7 +785,7 @@ impl claims::Config for Runtime { } parameter_types! { - pub const MinVestedTransfer: Balance = 100 * DOLLARS; + pub const MinVestedTransfer: Balance = 1 * DOLLARS; } impl pallet_vesting::Config for Runtime { diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index 2695bffa07..d83dac3803 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -605,7 +605,7 @@ impl pallet_recovery::Config for Runtime { } parameter_types! { - pub const MinVestedTransfer: Balance = 100 * DOLLARS; + pub const MinVestedTransfer: Balance = 1 * DOLLARS; } impl pallet_vesting::Config for Runtime {