Skip to content

Commit

Permalink
minor: pico pica
Browse files Browse the repository at this point in the history
  • Loading branch information
vuong177 committed May 27, 2023
1 parent 79f5025 commit b16e741
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/ibctesting/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func NewTestChain(t *testing.T, coord *Coordinator, chainID string) *TestChain {
// generate genesis account
senderPrivKey := secp256k1.GenPrivKey()
acc := authtypes.NewBaseAccount(senderPrivKey.PubKey().Address().Bytes(), senderPrivKey.PubKey(), 0, 0)
amount, ok := sdk.NewIntFromString("10000000000000000000")
amount, ok := sdk.NewIntFromString("10000000000000000000000")
require.True(t, ok)

balance := banktypes.Balance{
Expand Down
2 changes: 1 addition & 1 deletion app/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func SetupWithGenesisValSet(
validators := make([]stakingtypes.Validator, 0, len(valSet.Validators))
delegations := make([]stakingtypes.Delegation, 0, len(valSet.Validators))

bondAmt := sdk.NewInt(1000000)
bondAmt := sdk.NewInt(1000000000000)

for _, val := range valSet.Validators {
pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey)
Expand Down

0 comments on commit b16e741

Please sign in to comment.