Skip to content

Commit

Permalink
Merge pull request #124 from bnb-chain/fix_param_bridge
Browse files Browse the repository at this point in the history
fix: fix the crosschain keeper in params module
  • Loading branch information
yutianwu authored Mar 9, 2023
2 parents dd9cbde + 873110f commit a16dfc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions x/params/keeper/sync_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ func (k Keeper) SyncParams(ctx sdk.Context, p *types.ParameterChangeProposal) er
encodedPackage,
big.NewInt(0),
big.NewInt(0),
big.NewInt(0),
)
return err
}
Expand Down
2 changes: 1 addition & 1 deletion x/params/types/expected_keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

type CrossChainKeeper interface {
CreateRawIBCPackageWithFee(ctx sdk.Context, channelID sdk.ChannelID, packageType sdk.CrossChainPackageType,
packageLoad []byte, relayerFee *big.Int, ackRelayerFee *big.Int,
packageLoad []byte, relayerFee *big.Int, ackRelayerFee *big.Int, callbackGasPrice *big.Int,
) (uint64, error)

RegisterChannel(name string, id sdk.ChannelID, app sdk.CrossChainApplication) error
Expand Down

0 comments on commit a16dfc3

Please sign in to comment.