Skip to content

Commit

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

* chore: update changelog

* chore: lint fix

* chore: lint fix
  • Loading branch information
jaeseung-bae authored May 13, 2024
1 parent ed74ee8 commit e3f3bd7
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 @@ -88,6 +88,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (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, x/fbridge) [\#1378](https://github.com/Finschia/finschia-sdk/pull/1378) Fix bug where amino is not supported in fswap and fbridge
* (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 e3f3bd7

Please sign in to comment.