From 8e5bd55d99c2f3ba549b3718cee5717fd4846fe5 Mon Sep 17 00:00:00 2001 From: Mohit Mamoria Date: Tue, 26 Nov 2019 13:16:20 +0530 Subject: [PATCH] made the initial stake to be 0 --- types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/types.go b/types/types.go index 14982ac2..2e3d059b 100644 --- a/types/types.go +++ b/types/types.go @@ -38,7 +38,7 @@ const ( ) // InitialStake is an `sdk.Coins` representing the balance a new user is granted upon registration -var InitialStake = sdk.Coin{Amount: sdk.NewInt(300 * Shanev), Denom: StakeDenom} +var InitialStake = sdk.Coin{Amount: sdk.NewInt(0), Denom: StakeDenom} // RegistrationFee is an `auth.StdFee` representing the coin and gas cost of registering a new account // TODO: Use more accurate gas estimate [notduncansmith]