Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/upgrade-test/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (s *TestSuite) TestChainIBCTransfer() {
address, err := chain1.CreateRandWallet(keyName)
s.Require().NoError(err)

// Tranfer atom to persistence chain
// Transfer atom to persistence chain
s.IBCTransferTokens(chain2, chain1, address, 12345000)

// Verify the address received the token
Expand Down
2 changes: 1 addition & 1 deletion examples/upgrade-test/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (s *TestSuite) WaitForTx(chain *starship.ChainClient, txHex string) {
},
300*time.Second,
time.Second,
"waited for too long, still txn not successfull",
"waited for too long, still txn not successful",
)
s.Require().NotNil(tx)
}
Expand Down
6 changes: 3 additions & 3 deletions examples/upgrade-test/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (s *TestSuite) TestChainUpgrade() {
}
}
s.Require().NotZerof(proposalID, "proposal id not found in tx events")
s.T().Logf("upgrade: software upgrade proposal submited, proposal id: %d", proposalID)
s.T().Logf("upgrade: software upgrade proposal submitted, proposal id: %d", proposalID)

// Vote on the proposal to pass it
vote := &gov.MsgVote{ProposalId: uint64(proposalID), Voter: chain.Address, Option: gov.OptionYes}
Expand All @@ -95,7 +95,7 @@ func (s *TestSuite) TestChainUpgrade() {
s.Require().NotNil(propRes)
s.Require().Equal(propRes.Proposal.ProposalId, uint64(proposalID))
s.Require().Equal(propRes.Proposal.Status, gov.StatusVotingPeriod)
s.T().Logf("upgrade: quieried the proposal which is in voting period")
s.T().Logf("upgrade: queried the proposal which is in voting period")

// Wait for upgrade height and fetch propsal again
curHeight, err = chain.GetHeight()
Expand Down Expand Up @@ -124,7 +124,7 @@ func (s *TestSuite) TestChainUpgrade() {
s.Require().Len(balance, 1)
s.Require().Equal(balance.Denoms(), []string{denom})
s.Require().Equal(balance[0].Amount, sdk.NewInt(12312300))
s.T().Logf("post-upgrade: verifed balance of address after upgrade")
s.T().Logf("post-upgrade: verified balance of address after upgrade")

// transfer some more tokens to address
s.TransferTokens(chain, address, 12312300, denom)
Expand Down