docs: use the right link for app.go (#21585)

This commit is contained in:
Gin
2024-09-07 20:51:32 +00:00
committed by GitHub
parent 02b20f99af
commit 95383f5cd8
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ https://github.com/cosmos/cosmos-sdk/blob/v0.50.0-alpha.0/baseapp/abci_utils.go
```
This default implementation can be overridden by the application developer in
favor of a custom implementation in [`app.go`](https://docs.cosmos.network/main/build/building-apps/app-go-v2):
favor of a custom implementation in [`app_di.go`](https://docs.cosmos.network/main/build/building-apps/app-go-di):
```go
prepareOpt := func(app *baseapp.BaseApp) {
@@ -42,4 +42,4 @@ prepareOpt := func(app *baseapp.BaseApp) {
}
baseAppOptions = append(baseAppOptions, prepareOpt)
```
```
+1 -1
View File
@@ -18,7 +18,7 @@ https://github.com/cosmos/cosmos-sdk/blob/v0.50.0-alpha.0/baseapp/abci_utils.go#
```
Like `PrepareProposal` this implementation is the default and can be modified by
the application developer in [`app.go`](https://docs.cosmos.network/main/build/building-apps/app-go-v2). If you decide to implement
the application developer in [`app_di.go`](https://docs.cosmos.network/main/build/building-apps/app-go-di). If you decide to implement
your own `ProcessProposal` handler, you must be sure to ensure that the transactions
provided in the proposal DO NOT exceed the maximum block gas and `maxtxbytes` (if set).