Skip to content

Commit

Permalink
Add getter for ChainID in BaseApp (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xstepit authored and GAtom22 committed Jun 20, 2024
1 parent f346110 commit 2434edf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions baseapp/baseapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -921,3 +921,8 @@ func (app *BaseApp) ProcessProposalVerifyTx(txBz []byte) (sdk.Tx, error) {
func (app *BaseApp) Close() error {
return nil
}

// ChainID returns the chainID of the BaseApp.
func (app *BaseApp) ChainID() string {
return app.chainID
}

0 comments on commit 2434edf

Please sign in to comment.