Skip to content

Commit 63c003d

Browse files
committed
fix
1 parent f2cd8c3 commit 63c003d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/e2e/gov/tx.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ func (s *E2ETestSuite) TestNewCmdSubmitProposal() {
130130
"summary": "My awesome description",
131131
"metadata": "%s",
132132
"deposit": "%s"
133-
}`, authtypes.NewModuleAddress(types.ModuleName), base64.StdEncoding.EncodeToString(propMetadata), sdk.NewCoin(s.cfg.BondDenom, math.NewInt(10000)))
133+
}`, authtypes.NewModuleAddress(types.ModuleName), base64.StdEncoding.EncodeToString(propMetadata), sdk.NewCoin(s.cfg.BondDenom, math.NewInt(100000)))
134134
validPropFile := testutil.WriteToNewTempFile(s.T(), validProp)
135135
defer validPropFile.Close()
136136

tests/integration/bank/app_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ func TestMsgSetSendEnabled(t *testing.T) {
374374

375375
ctx := s.App.BaseApp.NewContext(false)
376376
require.NoError(t, testutil.FundAccount(ctx, s.BankKeeper, addr1, sdk.NewCoins(sdk.NewInt64Coin("foocoin", 101))))
377-
require.NoError(t, testutil.FundAccount(ctx, s.BankKeeper, addr1, sdk.NewCoins(sdk.NewInt64Coin("stake", 10000))))
377+
require.NoError(t, testutil.FundAccount(ctx, s.BankKeeper, addr1, sdk.NewCoins(sdk.NewInt64Coin("stake", 100000))))
378378
addr1Str := addr1.String()
379379
govAddr := s.BankKeeper.GetAuthority()
380380
goodGovProp, err := govv1.NewMsgSubmitProposal(

0 commit comments

Comments
 (0)