Change contract fees to MILLICENTS (#6509)

This commit is contained in:
Ricardo Rius
2020-06-25 17:46:18 +02:00
committed by GitHub
parent 330ea853e1
commit 59af5d6eae
+4 -4
View File
@@ -572,10 +572,10 @@ impl pallet_treasury::Trait for Runtime {
}
parameter_types! {
pub const TombstoneDeposit: Balance = 1 * DOLLARS;
pub const RentByteFee: Balance = 1 * DOLLARS;
pub const RentDepositOffset: Balance = 1000 * DOLLARS;
pub const SurchargeReward: Balance = 150 * DOLLARS;
pub const TombstoneDeposit: Balance = 16 * MILLICENTS;
pub const RentByteFee: Balance = 4 * MILLICENTS;
pub const RentDepositOffset: Balance = 1000 * MILLICENTS;
pub const SurchargeReward: Balance = 150 * MILLICENTS;
}
impl pallet_contracts::Trait for Runtime {