Skip to content

Commit 9c041c4

Browse files
authored
chore: implemented method SetOption() (#781)
* chore: implemented method `SetOption()` * chore: add changelog Signed-off-by: zemyblue <[email protected]> Signed-off-by: zemyblue <[email protected]>
1 parent c50f198 commit 9c041c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
4343

4444
### Bug Fixes
4545
* (x/foundation) [\#772](https://github.com/line/lbm-sdk/pull/772) export x/foundation pool
46+
* (baseapp) [\#781](https://github.com/line/lbm-sdk/pull/781) implement method `SetOption()` in baseapp
4647

4748
### Breaking Changes
4849
* (cli) [\#773](https://github.com/line/lbm-sdk/pull/773) guide users to use generate-only in messages for x/foundation authority

baseapp/abci.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ func (app *BaseApp) Info(req abci.RequestInfo) abci.ResponseInfo {
118118

119119
// SetOption implements the ABCI interface.
120120
func (app *BaseApp) SetOption(req abci.RequestSetOption) (res abci.ResponseSetOption) {
121-
// TODO: Implement!
122-
return
121+
return abci.ResponseSetOption{}
123122
}
124123

125124
// FilterPeerByAddrPort filters peers by address/port.

0 commit comments

Comments
 (0)