Skip to content

Commit

Permalink
fix compile err
Browse files Browse the repository at this point in the history
  • Loading branch information
phamminh0811 committed Jan 28, 2024
1 parent b1b1b7c commit 71e91c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/initialization/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ func (n *internalNode) init() error {
return fmt.Errorf("failed to JSON encode app genesis state: %w", err)
}

genDoc.chainID = n.chain.chainMeta.Id
genDoc.ChainID = n.chain.chainMeta.Id
genDoc.Validators = nil
genDoc.AppState = appState

Expand Down Expand Up @@ -365,7 +365,7 @@ func (n *internalNode) signMsg(msgs ...sdk.Msg) (*sdktx.Tx, error) {

// TODO: Find a better way to sign this tx with less code.
signerData := authsigning.SignerData{
chainID: n.chain.chainMeta.Id,
ChainID: n.chain.chainMeta.Id,
AccountNumber: 0,
Sequence: 0,
}
Expand Down

0 comments on commit 71e91c6

Please sign in to comment.