Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
toteki committed Oct 9, 2023
1 parent 1825421 commit 1c36c38
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions tests/e2e/setup/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,7 @@ const (
GaiaChainID = "test-gaia-chain"
)

var (
// Initial coins to give to validators
valCoins = sdk.NewCoins(
coin.New(appparams.BondDenom, 1_000000_000000),
coin.New(PhotonDenom, 1_000000_000000),
coin.New(mocks.USDTBaseDenom, 1_000000_000000),
)

minGasPrice = appparams.ProtocolMinGasPrice.String()

// TODO: stake less on the validators, and instead delegate from a non-validator account
stakeAmount, _ = sdk.NewIntFromString("100000000000")
stakeAmountCoin = sdk.NewCoin(appparams.BondDenom, stakeAmount)

stakeAmount2, _ = sdk.NewIntFromString("500000000000")
stakeAmountCoin2 = sdk.NewCoin(appparams.BondDenom, stakeAmount2)
)
var minGasPrice = appparams.ProtocolMinGasPrice.String()

// createMnemonic generates a random mnemonic to be used in key generation
func createMnemonic() (string, error) {
Expand Down

0 comments on commit 1c36c38

Please sign in to comment.