Skip to content

Commit

Permalink
initial balances, stake amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
toteki committed Oct 8, 2023
1 parent 83f782a commit a674526
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/setup/accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ type testAccount struct {

const (
// Initial coins to give to validators. Staking only (test txs should use testAccounts instead of validators.
ValidatorInitBalanceStr = "510000000000" + appparams.BondDenom + ",100000000000" + PhotonDenom + ",100000000000" + mocks.USDTBaseDenom
ValidatorInitBalanceStr = "100000000000" + appparams.BondDenom + ",100000000000" + PhotonDenom + ",100000000000" + mocks.USDTBaseDenom

// Number of test accounts to initialize in chain.TestAccounts
numTestAccounts = 3
// Initial balance of test accounts
AccountInitBalanceStr = "510000000000" + appparams.BondDenom + ",100000000000" + PhotonDenom + ",100000000000" + mocks.USDTBaseDenom
AccountInitBalanceStr = "100000000000" + appparams.BondDenom + ",100000000000" + PhotonDenom + ",100000000000" + mocks.USDTBaseDenom
)

var (
stakeAmount, _ = sdk.NewIntFromString("100000000000")
stakeAmount, _ = sdk.NewIntFromString("1000")
stakeAmountCoin = sdk.NewCoin(appparams.BondDenom, stakeAmount)

// TODO: reduce
stakeAmount2, _ = sdk.NewIntFromString("500000000000")
stakeAmount2, _ = sdk.NewIntFromString("5000")
stakeAmountCoin2 = sdk.NewCoin(appparams.BondDenom, stakeAmount2)
)

Expand Down

0 comments on commit a674526

Please sign in to comment.