From 1111c490db57c49fbef3c1b3b2292662ae1911ea Mon Sep 17 00:00:00 2001
From: Shawn Tabrizi <shawntabrizi@gmail.com>
Date: Fri, 9 Apr 2021 13:02:11 +0200
Subject: [PATCH] Reduce Kusama Fees / Deposits by 50x (#2451)

* Reduce the value of DOLLARS by 50x

* Update lib.rs
---
 polkadot/runtime/kusama/src/constants.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/polkadot/runtime/kusama/src/constants.rs b/polkadot/runtime/kusama/src/constants.rs
index b529f44740e..6b60cb1c9aa 100644
--- a/polkadot/runtime/kusama/src/constants.rs
+++ b/polkadot/runtime/kusama/src/constants.rs
@@ -19,7 +19,7 @@ pub mod currency {
 	use primitives::v0::Balance;
 
 	pub const DOTS: Balance = 1_000_000_000_000;
-	pub const DOLLARS: Balance = DOTS / 6;
+	pub const DOLLARS: Balance = DOTS / 300;
 	pub const CENTS: Balance = DOLLARS / 100;
 	pub const MILLICENTS: Balance = CENTS / 1_000;
 
-- 
GitLab