Skip to content

Commit

Permalink
fix: add missing router registration (backport #1379) (#1381)
Browse files Browse the repository at this point in the history
* fix: add missing router registration (#1379)

* fix: add missing router register

* chore: update changelog

* chore: lint fix

* chore: lint fix

(cherry picked from commit e3f3bd7)

# Conflicts:
#	CHANGELOG.md

* fix: add missing router registration (#1379)

* fix: add missing router register

* chore: update changelog

* chore: lint fix

* chore: lint fix

* chore: fix changelog

---------

Co-authored-by: jaeseung-bae <119839167+jaeseung-bae@users.noreply.github.com>
Co-authored-by: jaeseung.bae <jaeseung.bae@linecorp.com>
  • Loading branch information
3 people authored May 13, 2024
1 parent fb1c2b0 commit 1da1023
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (x/server) [\#1337](https://github.com/Finschia/finschia-sdk/pull/1337) fix panic when defining minimum gas config as `100stake;100uatom`. Use a `,` delimiter instead of `;`. Fixes the server config getter to use the correct delimiter (backport cosmos/cosmos-sdk#18537)
* (x/fbridge) [\#1361](https://github.com/Finschia/finschia-sdk/pull/1361) Fixes fbridge auth checking bug
* (x/fswap) [\#1365](https://github.com/Finschia/finschia-sdk/pull/1365) fix update swap keys for possibly overlapped keys(`(hello,world) should be different to (hel,loworld)`)
* (x/fswap) [\#1379](https://github.com/Finschia/finschia-sdk/pull/1379) add missing router registration

### Removed

Expand Down
2 changes: 1 addition & 1 deletion x/fswap/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ func (k Keeper) increaseSwapCount(ctx sdk.Context) error {
}

prev := stats.SwapCount
stats.SwapCount += 1
stats.SwapCount++
if stats.SwapCount < prev {
return types.ErrInvalidState.Wrap("overflow detected")
}
Expand Down
5 changes: 4 additions & 1 deletion x/fswap/module.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package fswap

import (
"context"
"encoding/json"
"fmt"

Expand Down Expand Up @@ -65,7 +66,9 @@ func (AppModuleBasic) ValidateGenesis(cdc codec.JSONCodec, _ client.TxEncodingCo

// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the module.
func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) {
// this line is used by starport scaffolding # 2
if err := types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx)); err != nil {
panic(err)
}
}

// GetTxCmd returns the fswap module's root tx command.
Expand Down

0 comments on commit 1da1023

Please sign in to comment.