diff --git a/proto/opinit/opchild/v1/types.proto b/proto/opinit/opchild/v1/types.proto index 94ba8cd..103440c 100644 --- a/proto/opinit/opchild/v1/types.proto +++ b/proto/opinit/opchild/v1/types.proto @@ -47,6 +47,8 @@ message Params { (amino.dont_omitempty) = true, (gogoproto.moretags) = "yaml:\"fee_whitelist\"" ]; + // Max gas for hook execution of `MsgFinalizeTokenDeposit` + uint64 hook_max_gas = 7 [(gogoproto.moretags) = "yaml:\"hook_max_gas\""]; } // Validator defines a validator, together with the total amount of the diff --git a/x/opchild/keeper/deposit.go b/x/opchild/keeper/deposit.go index b313005..bb79e29 100644 --- a/x/opchild/keeper/deposit.go +++ b/x/opchild/keeper/deposit.go @@ -4,11 +4,23 @@ import ( "context" "fmt" + storetypes "cosmossdk.io/store/types" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/initia-labs/OPinit/x/opchild/types" ) -func (k Keeper) handleBridgeHook(ctx sdk.Context, data []byte) (success bool, reason string) { +func (k Keeper) handleBridgeHook(ctx sdk.Context, data []byte, hookMaxGas uint64) (success bool, reason string) { + if hookMaxGas == 0 { + return false, "hook max gas is zero" + } + + originGasMeter := ctx.GasMeter() + gasForHook := originGasMeter.GasRemaining() + if gasForHook > hookMaxGas { + gasForHook = hookMaxGas + } + defer func() { if r := recover(); r != nil { reason = fmt.Sprintf("panic: %v", r) @@ -18,8 +30,13 @@ func (k Keeper) handleBridgeHook(ctx sdk.Context, data []byte) (success bool, re if len(reason) > maxReasonLength { reason = reason[:maxReasonLength] + "..." } + + originGasMeter.ConsumeGas(ctx.GasMeter().GasConsumedToLimit(), "bridge hook") }() + // use new gas meter with the hook max gas limit + ctx = ctx.WithGasMeter(storetypes.NewGasMeter(gasForHook)) + tx, err := k.txDecoder(data) if err != nil { reason = fmt.Sprintf("Failed to decode tx: %s", err) diff --git a/x/opchild/keeper/msg_server.go b/x/opchild/keeper/msg_server.go index 4d44d37..b220a5b 100644 --- a/x/opchild/keeper/msg_server.go +++ b/x/opchild/keeper/msg_server.go @@ -436,10 +436,15 @@ func (ms MsgServer) FinalizeTokenDeposit(ctx context.Context, req *types.MsgFina sdk.NewAttribute(types.AttributeKeyFinalizeHeight, strconv.FormatUint(req.Height, 10)), ) + params, err := ms.GetParams(ctx) + if err != nil { + return nil, err + } + // if the deposit is successful and the data is not empty, execute the hook hookSuccess := true if depositSuccess && len(req.Data) > 0 { - hookSuccess, reason = ms.handleBridgeHook(sdkCtx, req.Data) + hookSuccess, reason = ms.handleBridgeHook(sdkCtx, req.Data, params.HookMaxGas) event = event.AppendAttributes(sdk.NewAttribute(types.AttributeKeySuccess, strconv.FormatBool(hookSuccess))) if !hookSuccess { event = event.AppendAttributes(sdk.NewAttribute(types.AttributeKeyReason, "hook failed; "+reason)) diff --git a/x/opchild/keeper/msg_server_test.go b/x/opchild/keeper/msg_server_test.go index 3d616e1..8137676 100644 --- a/x/opchild/keeper/msg_server_test.go +++ b/x/opchild/keeper/msg_server_test.go @@ -9,6 +9,7 @@ import ( "time" "cosmossdk.io/math" + storetypes "cosmossdk.io/store/types" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" testutilsims "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" @@ -559,6 +560,63 @@ func Test_MsgServer_Deposit_HookFail(t *testing.T) { require.Equal(t, math.NewInt(0), afterBalance.Amount) } +func Test_MsgServer_Deposit_HookFail_WithOutOfGas(t *testing.T) { + ctx, input := createDefaultTestInput(t) + ms := keeper.NewMsgServerImpl(&input.OPChildKeeper) + + bz := sha3.Sum256([]byte("test_token")) + denom := "l2/" + hex.EncodeToString(bz[:]) + + require.Equal(t, math.ZeroInt(), input.BankKeeper.GetBalance(ctx, addrs[1], denom).Amount) + + // empty deposit to create account + priv, _, addr := keyPubAddr() + msg := types.NewMsgFinalizeTokenDeposit(addrsStr[0], addrsStr[1], addr.String(), sdk.NewCoin(denom, math.ZeroInt()), 1, 1, "test_token", nil) + _, err := ms.FinalizeTokenDeposit(ctx, msg) + require.NoError(t, err) + + // create hook data + acc := input.AccountKeeper.GetAccount(ctx, addr) + require.NotNil(t, acc) + privs, accNums, accSeqs := []cryptotypes.PrivKey{priv}, []uint64{acc.GetAccountNumber()}, []uint64{0} + signedTxBz, err := input.EncodingConfig.TxConfig.TxEncoder()(generateTestTx( + t, input, + []sdk.Msg{banktypes.NewMsgSend(addr, addrs[2], sdk.NewCoins(sdk.NewCoin(denom, math.NewInt(100))))}, + privs, accNums, accSeqs, sdk.UnwrapSDKContext(ctx).ChainID(), + )) + require.NoError(t, err) + + params, err := input.OPChildKeeper.GetParams(ctx) + require.NoError(t, err) + + params.HookMaxGas = 1 + input.OPChildKeeper.SetParams(ctx, params) + + // valid deposit + ctx = sdk.UnwrapSDKContext(ctx).WithEventManager(sdk.NewEventManager()).WithGasMeter(storetypes.NewGasMeter(2_000_000)) + msg = types.NewMsgFinalizeTokenDeposit(addrsStr[0], addrsStr[1], addr.String(), sdk.NewCoin(denom, math.NewInt(100)), 2, 1, "test_token", signedTxBz) + _, err = ms.FinalizeTokenDeposit(ctx, msg) + require.NoError(t, err) + + for _, event := range sdk.UnwrapSDKContext(ctx).EventManager().Events() { + if event.Type == types.EventTypeFinalizeTokenDeposit { + attrIdx := slices.Index(event.Attributes, sdk.NewAttribute(types.AttributeKeySuccess, "false").ToKVPair()) + require.Positive(t, attrIdx) + require.Equal(t, event.Attributes[attrIdx+1].Key, types.AttributeKeyReason) + require.Contains(t, event.Attributes[attrIdx+1].Value, "hook failed;") + require.Contains(t, event.Attributes[attrIdx+1].Value, "panic:") + } + } + + // check addrs[2] balance + afterBalance := input.BankKeeper.GetBalance(ctx, addrs[2], denom) + require.Equal(t, math.NewInt(0), afterBalance.Amount) + + // check receiver has no balance + afterBalance = input.BankKeeper.GetBalance(ctx, addr, denom) + require.Equal(t, math.NewInt(0), afterBalance.Amount) +} + func Test_MsgServer_UpdateOracle(t *testing.T) { ctx, input := createDefaultTestInput(t) opchildKeeper := input.OPChildKeeper diff --git a/x/opchild/types/params.go b/x/opchild/types/params.go index fbf3fd5..c8b2d85 100644 --- a/x/opchild/types/params.go +++ b/x/opchild/types/params.go @@ -10,6 +10,7 @@ import ( var ( DefaultMinGasPrices = sdk.NewDecCoins(sdk.NewDecCoinFromDec(sdk.DefaultBondDenom, math.LegacyNewDecWithPrec(15, 2))) // 0.15 + DefaultHookMaxGas = uint64(1_000_000) ) // DefaultParams returns default move parameters @@ -21,11 +22,12 @@ func DefaultParams() Params { DefaultHistoricalEntries, DefaultMinGasPrices, []string{}, + DefaultHookMaxGas, ) } // NewParams creates a new Params instance -func NewParams(admin string, bridgeExecutors []string, maxValidators, historicalEntries uint32, minGasPrice sdk.DecCoins, feeWhitelist []string) Params { +func NewParams(admin string, bridgeExecutors []string, maxValidators, historicalEntries uint32, minGasPrice sdk.DecCoins, feeWhitelist []string, hookMaxGas uint64) Params { return Params{ Admin: admin, BridgeExecutors: bridgeExecutors, @@ -33,6 +35,7 @@ func NewParams(admin string, bridgeExecutors []string, maxValidators, historical HistoricalEntries: historicalEntries, MinGasPrices: minGasPrice, FeeWhitelist: feeWhitelist, + HookMaxGas: hookMaxGas, } } diff --git a/x/opchild/types/types.pb.go b/x/opchild/types/types.pb.go index f5d8d0c..7663ac9 100644 --- a/x/opchild/types/types.pb.go +++ b/x/opchild/types/types.pb.go @@ -76,6 +76,8 @@ type Params struct { Admin string `protobuf:"bytes,5,opt,name=admin,proto3" json:"admin,omitempty" yaml:"admin"` // the list of addresses that are allowed to pay zero fee. FeeWhitelist []string `protobuf:"bytes,6,rep,name=fee_whitelist,json=feeWhitelist,proto3" json:"fee_whitelist,omitempty" yaml:"fee_whitelist"` + // Max gas for hook execution of `MsgFinalizeTokenDeposit` + HookMaxGas uint64 `protobuf:"varint,7,opt,name=hook_max_gas,json=hookMaxGas,proto3" json:"hook_max_gas,omitempty" yaml:"hook_max_gas"` } func (m *Params) Reset() { *m = Params{} } @@ -338,75 +340,77 @@ func init() { func init() { proto.RegisterFile("opinit/opchild/v1/types.proto", fileDescriptor_2cc6df244b706d68) } var fileDescriptor_2cc6df244b706d68 = []byte{ - // 1075 bytes of a gzipped FileDescriptorProto + // 1110 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x55, 0xbf, 0x6f, 0xdb, 0xc6, - 0x17, 0x17, 0x6d, 0x39, 0x89, 0x4e, 0xb2, 0x2d, 0x1f, 0x1c, 0x7c, 0x65, 0x39, 0x21, 0x09, 0x2e, - 0x5f, 0xc1, 0xad, 0x48, 0xc8, 0xa9, 0x81, 0xd6, 0x53, 0x22, 0x59, 0x29, 0x84, 0x04, 0xb6, 0x40, - 0xd9, 0x0d, 0x9a, 0x85, 0xa0, 0xc8, 0x93, 0x74, 0x30, 0xc9, 0x23, 0x78, 0x94, 0x62, 0xfd, 0x07, - 0x81, 0x97, 0x76, 0xec, 0x62, 0xc0, 0x40, 0x97, 0x34, 0x53, 0x86, 0x6e, 0xfd, 0x07, 0x8c, 0x02, - 0x05, 0x82, 0x4e, 0x9d, 0x94, 0xd6, 0x1e, 0xd2, 0x59, 0x43, 0xe7, 0xe2, 0xee, 0xa8, 0x1f, 0x71, - 0x5d, 0xa4, 0x8b, 0x7d, 0xef, 0x7d, 0x3e, 0xef, 0xdd, 0xd3, 0xe7, 0xde, 0x7b, 0x04, 0xf7, 0x49, - 0x88, 0x03, 0x1c, 0x1b, 0x24, 0x74, 0x7a, 0xd8, 0x73, 0x8d, 0x41, 0xc5, 0x88, 0x87, 0x21, 0xa2, - 0x7a, 0x18, 0x91, 0x98, 0xc0, 0x35, 0x01, 0xeb, 0x09, 0xac, 0x0f, 0x2a, 0xc5, 0x35, 0xdb, 0xc7, - 0x01, 0x31, 0xf8, 0x5f, 0xc1, 0x2a, 0xca, 0x0e, 0xa1, 0x3e, 0xa1, 0x46, 0xdb, 0xa6, 0xc8, 0x18, - 0x54, 0xda, 0x28, 0xb6, 0x2b, 0x86, 0x43, 0x70, 0x90, 0xe0, 0x1b, 0x02, 0xb7, 0xb8, 0x65, 0x08, - 0x23, 0x81, 0xd6, 0xbb, 0xa4, 0x4b, 0x84, 0x9f, 0x9d, 0x26, 0x01, 0x5d, 0x42, 0xba, 0x1e, 0x32, - 0xb8, 0xd5, 0xee, 0x77, 0x0c, 0x3b, 0x18, 0x26, 0xd0, 0xbd, 0x69, 0xc1, 0x3d, 0x42, 0xe3, 0x6b, - 0xf5, 0x16, 0x37, 0x63, 0x14, 0xb8, 0x28, 0xf2, 0x71, 0x10, 0x1b, 0x76, 0xdb, 0xc1, 0xf3, 0xa0, - 0xf6, 0x4b, 0x1a, 0xdc, 0x6a, 0xda, 0x91, 0xed, 0x53, 0xf8, 0x10, 0xac, 0xf8, 0xf6, 0x89, 0x35, - 0xb0, 0x3d, 0xec, 0xda, 0x31, 0x89, 0x68, 0x41, 0x52, 0xa5, 0xd2, 0x72, 0x75, 0x63, 0x3c, 0x52, - 0xee, 0x0e, 0x6d, 0xdf, 0xdb, 0xd5, 0x3e, 0xc4, 0x35, 0x73, 0xd9, 0xb7, 0x4f, 0xbe, 0x9a, 0xda, - 0xf0, 0x29, 0x80, 0x3d, 0x4c, 0x63, 0x12, 0x61, 0xc7, 0xf6, 0x2c, 0x14, 0xc4, 0x11, 0x46, 0xb4, - 0xb0, 0xc0, 0xb3, 0xdc, 0x1f, 0x8f, 0x94, 0x0d, 0x91, 0xe5, 0x9f, 0x1c, 0xcd, 0x5c, 0x9b, 0x39, - 0xeb, 0xc2, 0x07, 0xbf, 0x91, 0xc0, 0x8a, 0x8f, 0x03, 0xab, 0x6b, 0x33, 0x95, 0xb0, 0x83, 0x68, - 0x61, 0x51, 0x5d, 0x2c, 0x65, 0xb7, 0xef, 0xe9, 0x89, 0x5c, 0x4c, 0x5b, 0x3d, 0xd1, 0x56, 0xdf, - 0x43, 0x4e, 0x8d, 0xe0, 0xa0, 0xfa, 0xe4, 0x62, 0xa4, 0xa4, 0xc6, 0x23, 0x65, 0x3d, 0x29, 0x79, - 0x3e, 0x83, 0xf6, 0xfa, 0x9d, 0xf2, 0x49, 0x17, 0xc7, 0xbd, 0x7e, 0x5b, 0x77, 0x88, 0x9f, 0xc8, - 0x9e, 0xfc, 0x2b, 0x53, 0xf7, 0x38, 0xd1, 0x26, 0xc9, 0x45, 0xcd, 0x9c, 0x8f, 0x83, 0x2f, 0x6d, - 0xda, 0xe4, 0xd7, 0x43, 0x07, 0xe4, 0xdb, 0x11, 0x76, 0xbb, 0xc8, 0x42, 0x27, 0xc8, 0xe9, 0x73, - 0x8d, 0xd2, 0xea, 0x62, 0x29, 0x53, 0xfd, 0x7c, 0x3c, 0x52, 0xfe, 0x27, 0x2e, 0xbc, 0xce, 0xd0, - 0x7e, 0xfd, 0xb1, 0xbc, 0x9e, 0x14, 0xfc, 0xc8, 0x75, 0x23, 0x44, 0x69, 0x2b, 0x8e, 0x70, 0xd0, - 0x7d, 0xf5, 0xfe, 0xcd, 0x96, 0x64, 0xae, 0x0a, 0x7e, 0x7d, 0x42, 0x87, 0x35, 0xb0, 0x64, 0xbb, - 0x3e, 0x0e, 0x0a, 0x4b, 0xaa, 0x54, 0xca, 0x54, 0xcb, 0xe3, 0x91, 0x92, 0x13, 0x99, 0xb9, 0xfb, - 0x23, 0xe9, 0x44, 0x2c, 0x7c, 0x0e, 0x96, 0x3b, 0x08, 0x59, 0x2f, 0x7a, 0x38, 0x46, 0x1e, 0xa6, - 0x71, 0xe1, 0x16, 0x2f, 0x73, 0x67, 0xa6, 0xcb, 0x07, 0xf0, 0x47, 0x92, 0xe6, 0x3a, 0x08, 0x3d, - 0x9b, 0x70, 0x77, 0x37, 0xbf, 0x3b, 0x57, 0x52, 0x7f, 0x9e, 0x2b, 0xd2, 0xe9, 0xfb, 0x37, 0x5b, - 0x2b, 0x93, 0x21, 0x11, 0x4d, 0xa4, 0xfd, 0xb4, 0x00, 0x32, 0xd3, 0x8e, 0x80, 0x9f, 0x82, 0xdb, - 0x3e, 0x09, 0xf0, 0x31, 0x8a, 0x78, 0x2f, 0x65, 0xaa, 0x70, 0x3c, 0x52, 0x56, 0x92, 0x87, 0x11, - 0x80, 0x66, 0x4e, 0x28, 0xf0, 0x31, 0xc8, 0x93, 0x10, 0x45, 0x2c, 0xd2, 0xb2, 0x45, 0x15, 0xbc, - 0x79, 0x32, 0xd5, 0xcd, 0x99, 0xbc, 0xd7, 0x19, 0x9a, 0xb9, 0x3a, 0x71, 0x25, 0x95, 0xc3, 0x18, - 0xe4, 0x1d, 0x12, 0x50, 0x14, 0xd0, 0x3e, 0xb5, 0xc2, 0x7e, 0xfb, 0x18, 0x0d, 0x0b, 0x8b, 0xaa, - 0x54, 0xca, 0x6e, 0xaf, 0xeb, 0x62, 0x88, 0xf4, 0xc9, 0x10, 0xe9, 0x8f, 0x82, 0x61, 0xf5, 0xc1, - 0x2c, 0xfb, 0xf5, 0x38, 0xed, 0xe7, 0x99, 0x30, 0x4e, 0x34, 0x0c, 0x63, 0xa2, 0x37, 0xfb, 0xed, - 0x27, 0x68, 0x68, 0xae, 0x4e, 0xa9, 0x4d, 0xce, 0x84, 0x9f, 0x01, 0xc0, 0x5c, 0x56, 0x48, 0x5e, - 0xa0, 0xa8, 0x90, 0x56, 0xa5, 0xd2, 0x62, 0xf5, 0xee, 0x78, 0xa4, 0xac, 0xcd, 0x32, 0x0b, 0x4c, - 0x33, 0x33, 0xcc, 0x68, 0xb2, 0xf3, 0x6e, 0xee, 0xe5, 0xb9, 0x92, 0x4a, 0x04, 0x4d, 0x69, 0x16, - 0xc8, 0x4f, 0xc5, 0x3b, 0x0a, 0x5d, 0x3b, 0x46, 0x14, 0xd6, 0xc1, 0xed, 0xbe, 0x38, 0x16, 0x24, - 0xde, 0xfe, 0xaa, 0x3e, 0x1b, 0x68, 0x9d, 0x0d, 0xb4, 0x7e, 0x2d, 0xa6, 0x9a, 0x61, 0x23, 0x20, - 0x9e, 0x6e, 0x12, 0xbb, 0x9b, 0xe6, 0x17, 0xfc, 0x25, 0x01, 0x50, 0xe5, 0x0d, 0xd7, 0x08, 0x3a, - 0x04, 0x6e, 0x82, 0x4c, 0xd2, 0xae, 0xd8, 0xe5, 0x2f, 0x94, 0x36, 0xef, 0x08, 0x47, 0xc3, 0x85, - 0x5f, 0x80, 0x6c, 0x02, 0x32, 0xa9, 0x93, 0x97, 0x28, 0xfc, 0x5b, 0xa7, 0x98, 0x40, 0x90, 0x99, - 0x13, 0xca, 0x20, 0xeb, 0x55, 0x2c, 0xa7, 0x67, 0xe3, 0x80, 0x65, 0x66, 0xe2, 0x67, 0xcc, 0x8c, - 0x57, 0xa9, 0x31, 0x4f, 0xc3, 0x85, 0x2a, 0xc8, 0x31, 0xdc, 0xc3, 0x28, 0x88, 0x19, 0x21, 0xcd, - 0x09, 0xc0, 0xab, 0xd4, 0xb8, 0xab, 0xe1, 0xc2, 0x7d, 0xb0, 0x9c, 0x5c, 0xee, 0x90, 0xa0, 0x83, - 0xbb, 0x7c, 0x1a, 0xb2, 0xdb, 0xb2, 0x3e, 0x5d, 0xbe, 0x6c, 0xd5, 0xe9, 0x83, 0x8a, 0x2e, 0x7e, - 0x4e, 0x8d, 0xb3, 0xe6, 0x7f, 0x79, 0xae, 0x3d, 0x07, 0x68, 0x03, 0x90, 0xe3, 0x13, 0xfd, 0x2c, - 0xb2, 0xc3, 0x10, 0x45, 0xb0, 0x03, 0x96, 0xd8, 0x32, 0x9e, 0x68, 0xba, 0x71, 0xe3, 0x4a, 0xe1, - 0xfb, 0x64, 0x87, 0xa5, 0x7c, 0xfd, 0x4e, 0x29, 0xfd, 0x87, 0xbd, 0xc1, 0xaf, 0x48, 0x06, 0x91, - 0xa7, 0xd7, 0x1e, 0x82, 0xcc, 0x1e, 0x0a, 0x88, 0xdf, 0xb4, 0x71, 0x04, 0xd7, 0xc1, 0x92, 0xcb, - 0x0c, 0x31, 0x0c, 0xa6, 0x30, 0xe0, 0x7d, 0x00, 0xd8, 0xad, 0x96, 0x80, 0x16, 0x84, 0x56, 0xcc, - 0xc3, 0x03, 0xb7, 0x7e, 0x90, 0x00, 0x34, 0x11, 0x0d, 0x59, 0xbb, 0x99, 0x88, 0xf6, 0xbd, 0xf8, - 0x70, 0x18, 0x22, 0xb8, 0x03, 0x54, 0xb3, 0xde, 0x6a, 0x1e, 0xec, 0xb7, 0xea, 0x96, 0x59, 0x6f, - 0x1d, 0x3d, 0x3d, 0xb4, 0x0e, 0xbf, 0x6e, 0xd6, 0xad, 0xa3, 0xfd, 0x56, 0xb3, 0x5e, 0x6b, 0x3c, - 0x6e, 0xd4, 0xf7, 0xf2, 0xa9, 0xe2, 0xea, 0xe9, 0x99, 0x9a, 0x9d, 0x73, 0xc1, 0xff, 0x83, 0x8d, - 0x1b, 0xc3, 0xf6, 0x0f, 0x0e, 0x9a, 0x79, 0xa9, 0x78, 0xe7, 0xf4, 0x4c, 0x4d, 0xb3, 0x33, 0x2c, - 0x83, 0x7b, 0x37, 0x12, 0x5b, 0x47, 0xb5, 0x5a, 0xbd, 0xd5, 0xca, 0x2f, 0x14, 0xb3, 0xa7, 0x67, - 0xea, 0xed, 0xc4, 0x2c, 0xa6, 0x5f, 0x7e, 0x2f, 0xa7, 0xaa, 0x07, 0x17, 0x7f, 0xc8, 0xa9, 0x57, - 0x97, 0xb2, 0x74, 0x71, 0x29, 0x4b, 0x6f, 0x2f, 0x65, 0xe9, 0xf7, 0x4b, 0x59, 0xfa, 0xf6, 0x4a, - 0x4e, 0xbd, 0xbd, 0x92, 0x53, 0xbf, 0x5d, 0xc9, 0xa9, 0xe7, 0xe5, 0x39, 0x15, 0xd9, 0x43, 0x62, - 0xbb, 0xec, 0xd9, 0x6d, 0x6a, 0x1c, 0x34, 0xf9, 0x17, 0xec, 0x64, 0xfa, 0xd1, 0xe5, 0x82, 0xb6, - 0x6f, 0xf1, 0x41, 0x7d, 0xf0, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x78, 0x6c, 0x3d, 0xf1, 0x93, - 0x07, 0x00, 0x00, + 0x17, 0x17, 0x6d, 0x39, 0x8e, 0x4e, 0xb2, 0x2d, 0xdf, 0xd7, 0x41, 0x64, 0x39, 0x21, 0x09, 0x2e, + 0x5f, 0x21, 0xad, 0x49, 0x28, 0x69, 0x80, 0xc6, 0x53, 0x42, 0x45, 0x09, 0x8c, 0xa4, 0xb6, 0x40, + 0xc5, 0x0d, 0x9a, 0x85, 0x38, 0x91, 0x67, 0xe9, 0x60, 0x92, 0x47, 0xf0, 0x28, 0xc5, 0xfa, 0x0f, + 0x02, 0x2f, 0xed, 0xd8, 0x25, 0x40, 0x80, 0x2e, 0x69, 0xa6, 0x0c, 0xdd, 0xfa, 0x0f, 0x04, 0x9d, + 0x82, 0x4e, 0x9d, 0x94, 0xd6, 0x19, 0xd2, 0x59, 0x43, 0xe7, 0xe2, 0xee, 0xa8, 0x1f, 0x71, 0x5d, + 0xa4, 0x8b, 0x74, 0xef, 0x7d, 0x3e, 0xef, 0xdd, 0xdd, 0xe7, 0xde, 0x7b, 0x04, 0x57, 0x69, 0x4c, + 0x22, 0x92, 0x5a, 0x34, 0xf6, 0x7a, 0x24, 0xf0, 0xad, 0x41, 0xdd, 0x4a, 0x87, 0x31, 0x66, 0x66, + 0x9c, 0xd0, 0x94, 0xc2, 0x75, 0x09, 0x9b, 0x19, 0x6c, 0x0e, 0xea, 0xd5, 0x75, 0x14, 0x92, 0x88, + 0x5a, 0xe2, 0x57, 0xb2, 0xaa, 0xaa, 0x47, 0x59, 0x48, 0x99, 0xd5, 0x41, 0x0c, 0x5b, 0x83, 0x7a, + 0x07, 0xa7, 0xa8, 0x6e, 0x79, 0x94, 0x44, 0x19, 0xbe, 0x29, 0x71, 0x57, 0x58, 0x96, 0x34, 0x32, + 0x68, 0xa3, 0x4b, 0xbb, 0x54, 0xfa, 0xf9, 0x6a, 0x12, 0xd0, 0xa5, 0xb4, 0x1b, 0x60, 0x4b, 0x58, + 0x9d, 0xfe, 0xa1, 0x85, 0xa2, 0x61, 0x06, 0x5d, 0x99, 0x1e, 0xb8, 0x47, 0x59, 0x7a, 0xe6, 0xbc, + 0xd5, 0xad, 0x14, 0x47, 0x3e, 0x4e, 0x42, 0x12, 0xa5, 0x16, 0xea, 0x78, 0x64, 0x1e, 0x34, 0x9e, + 0x2d, 0x81, 0x0b, 0x2d, 0x94, 0xa0, 0x90, 0xc1, 0xdb, 0x60, 0x35, 0x44, 0xc7, 0xee, 0x00, 0x05, + 0xc4, 0x47, 0x29, 0x4d, 0x58, 0x45, 0xd1, 0x95, 0xda, 0x8a, 0xbd, 0x39, 0x1e, 0x69, 0x97, 0x86, + 0x28, 0x0c, 0x76, 0x8c, 0x8f, 0x71, 0xc3, 0x59, 0x09, 0xd1, 0xf1, 0xd7, 0x53, 0x1b, 0x3e, 0x04, + 0xb0, 0x47, 0x58, 0x4a, 0x13, 0xe2, 0xa1, 0xc0, 0xc5, 0x51, 0x9a, 0x10, 0xcc, 0x2a, 0x0b, 0x22, + 0xcb, 0xd5, 0xf1, 0x48, 0xdb, 0x94, 0x59, 0xfe, 0xc9, 0x31, 0x9c, 0xf5, 0x99, 0xb3, 0x29, 0x7d, + 0xf0, 0x5b, 0x05, 0xac, 0x86, 0x24, 0x72, 0xbb, 0x88, 0xab, 0x44, 0x3c, 0xcc, 0x2a, 0x8b, 0xfa, + 0x62, 0xad, 0x78, 0xfd, 0x8a, 0x99, 0xc9, 0xc5, 0xb5, 0x35, 0x33, 0x6d, 0xcd, 0xbb, 0xd8, 0x6b, + 0x50, 0x12, 0xd9, 0x0f, 0xde, 0x8c, 0xb4, 0xdc, 0x78, 0xa4, 0x6d, 0x64, 0x47, 0x9e, 0xcf, 0x60, + 0xbc, 0x7a, 0xa7, 0x7d, 0xd6, 0x25, 0x69, 0xaf, 0xdf, 0x31, 0x3d, 0x1a, 0x66, 0xb2, 0x67, 0x7f, + 0xdb, 0xcc, 0x3f, 0xca, 0xb4, 0xc9, 0x72, 0x31, 0xa7, 0x14, 0x92, 0xe8, 0x3e, 0x62, 0x2d, 0xb1, + 0x3d, 0xf4, 0x40, 0xb9, 0x93, 0x10, 0xbf, 0x8b, 0x5d, 0x7c, 0x8c, 0xbd, 0xbe, 0xd0, 0x28, 0xaf, + 0x2f, 0xd6, 0x0a, 0xf6, 0x97, 0xe3, 0x91, 0x76, 0x59, 0x6e, 0x78, 0x96, 0x61, 0xfc, 0xfa, 0xd3, + 0xf6, 0x46, 0x76, 0xe0, 0x3b, 0xbe, 0x9f, 0x60, 0xc6, 0xda, 0x69, 0x42, 0xa2, 0xee, 0xcb, 0x0f, + 0xaf, 0xaf, 0x29, 0xce, 0x9a, 0xe4, 0x37, 0x27, 0x74, 0xd8, 0x00, 0x4b, 0xc8, 0x0f, 0x49, 0x54, + 0x59, 0xd2, 0x95, 0x5a, 0xc1, 0xde, 0x1e, 0x8f, 0xb4, 0x92, 0xcc, 0x2c, 0xdc, 0x9f, 0x48, 0x27, + 0x63, 0xe1, 0x13, 0xb0, 0x72, 0x88, 0xb1, 0xfb, 0xb4, 0x47, 0x52, 0x1c, 0x10, 0x96, 0x56, 0x2e, + 0x88, 0x63, 0xde, 0x9c, 0xe9, 0xf2, 0x11, 0xfc, 0x89, 0xa4, 0xa5, 0x43, 0x8c, 0x1f, 0x4f, 0xb8, + 0xf0, 0x16, 0x28, 0xf5, 0x28, 0x3d, 0x72, 0x79, 0x31, 0x74, 0x11, 0xab, 0x2c, 0xeb, 0x4a, 0x2d, + 0x6f, 0x5f, 0x1e, 0x8f, 0xb4, 0xff, 0x65, 0xef, 0x3b, 0x87, 0x1a, 0x0e, 0xe0, 0xe6, 0x57, 0xe8, + 0xf8, 0x3e, 0x62, 0x3b, 0x5b, 0xdf, 0xbf, 0xd0, 0x72, 0x7f, 0xbe, 0xd0, 0x94, 0x93, 0x0f, 0xaf, + 0xaf, 0xad, 0x4e, 0xfa, 0x4b, 0xd6, 0x9f, 0xf1, 0xf3, 0x02, 0x28, 0x4c, 0x8b, 0x09, 0x7e, 0x0e, + 0x96, 0x43, 0x1a, 0x91, 0x23, 0x9c, 0x88, 0x32, 0x2c, 0xd8, 0x70, 0x3c, 0xd2, 0x56, 0xb3, 0x37, + 0x95, 0x80, 0xe1, 0x4c, 0x28, 0xf0, 0x1e, 0x28, 0xd3, 0x18, 0x27, 0x3c, 0xd2, 0x45, 0xf2, 0x02, + 0xa2, 0xee, 0x0a, 0xf6, 0xd6, 0xec, 0x65, 0xce, 0x32, 0x0c, 0x67, 0x6d, 0xe2, 0xca, 0x2e, 0x0d, + 0x53, 0x50, 0xf6, 0x68, 0xc4, 0x70, 0xc4, 0xfa, 0xcc, 0x8d, 0xfb, 0x9d, 0x23, 0x3c, 0xac, 0x2c, + 0xea, 0x4a, 0xad, 0x78, 0x7d, 0xc3, 0x94, 0xfd, 0x67, 0x4e, 0xfa, 0xcf, 0xbc, 0x13, 0x0d, 0xed, + 0x1b, 0xb3, 0xec, 0x67, 0xe3, 0x8c, 0x5f, 0x66, 0x9a, 0x7a, 0xc9, 0x30, 0x4e, 0xa9, 0xd9, 0xea, + 0x77, 0x1e, 0xe0, 0xa1, 0xb3, 0x36, 0xa5, 0xb6, 0x04, 0x13, 0x7e, 0x01, 0x00, 0x77, 0xb9, 0x31, + 0x7d, 0x8a, 0x93, 0x4a, 0x5e, 0x57, 0x6a, 0x8b, 0xf6, 0xa5, 0xf1, 0x48, 0x5b, 0x9f, 0x65, 0x96, + 0x98, 0xe1, 0x14, 0xb8, 0xd1, 0xe2, 0xeb, 0x9d, 0xd2, 0xb3, 0x17, 0x5a, 0x2e, 0x13, 0x34, 0x67, + 0xb8, 0xa0, 0x3c, 0x15, 0xef, 0x20, 0xf6, 0x51, 0x8a, 0x19, 0x6c, 0x82, 0xe5, 0xbe, 0x5c, 0x56, + 0x14, 0xd1, 0x39, 0xba, 0x39, 0x9b, 0x05, 0x26, 0x9f, 0x05, 0xe6, 0x99, 0x18, 0xbb, 0xc0, 0xbb, + 0x47, 0xbe, 0xfa, 0x24, 0x76, 0x27, 0x2f, 0x36, 0xf8, 0x4b, 0x01, 0xc0, 0x16, 0xb5, 0xba, 0x1b, + 0x1d, 0x52, 0xb8, 0x05, 0x0a, 0x59, 0xa5, 0x13, 0x5f, 0xbc, 0x50, 0xde, 0xb9, 0x28, 0x1d, 0xbb, + 0x3e, 0xbc, 0x05, 0x8a, 0x19, 0xc8, 0xa5, 0xce, 0x5e, 0xa2, 0xf2, 0x6f, 0x45, 0xe6, 0x00, 0x49, + 0xe6, 0x4e, 0xa8, 0x82, 0x62, 0x50, 0x77, 0xbd, 0x1e, 0x22, 0x11, 0xcf, 0xcc, 0xc5, 0x2f, 0x38, + 0x85, 0xa0, 0xde, 0xe0, 0x9e, 0x5d, 0x1f, 0xea, 0xa0, 0xc4, 0xf1, 0x80, 0xe0, 0x28, 0xe5, 0x84, + 0xbc, 0x20, 0x80, 0xa0, 0xde, 0x10, 0xae, 0x5d, 0x1f, 0xee, 0x81, 0x95, 0x6c, 0x73, 0x8f, 0x46, + 0x87, 0xa4, 0x2b, 0x1a, 0xa9, 0x78, 0x5d, 0x35, 0xa7, 0x73, 0x9b, 0x4f, 0x49, 0x73, 0x50, 0x37, + 0xe5, 0x75, 0x1a, 0x82, 0x35, 0x7f, 0xf3, 0x52, 0x67, 0x0e, 0x30, 0x06, 0xa0, 0x24, 0x86, 0xc1, + 0xe3, 0x04, 0xc5, 0x31, 0x4e, 0xe0, 0x21, 0x58, 0xe2, 0x73, 0x7c, 0xa2, 0xe9, 0xe6, 0xb9, 0xd3, + 0x48, 0x8c, 0xa2, 0x9b, 0x3c, 0xe5, 0xab, 0x77, 0x5a, 0xed, 0x3f, 0x8c, 0x1c, 0xb1, 0x45, 0xd6, + 0xc3, 0x22, 0xbd, 0x71, 0x1b, 0x14, 0xee, 0xe2, 0x88, 0x86, 0x2d, 0x44, 0x12, 0xb8, 0x01, 0x96, + 0x7c, 0x6e, 0xc8, 0x66, 0x70, 0xa4, 0x01, 0xaf, 0x02, 0xc0, 0x77, 0x75, 0x25, 0xb4, 0x20, 0xb5, + 0xe2, 0x1e, 0x11, 0x78, 0xed, 0x47, 0x05, 0x40, 0x07, 0xb3, 0x98, 0x97, 0x9b, 0x83, 0x59, 0x3f, + 0x48, 0x1f, 0x0d, 0x63, 0x0c, 0x6f, 0x02, 0xdd, 0x69, 0xb6, 0x5b, 0xfb, 0x7b, 0xed, 0xa6, 0xeb, + 0x34, 0xdb, 0x07, 0x0f, 0x1f, 0xb9, 0x8f, 0xbe, 0x69, 0x35, 0xdd, 0x83, 0xbd, 0x76, 0xab, 0xd9, + 0xd8, 0xbd, 0xb7, 0xdb, 0xbc, 0x5b, 0xce, 0x55, 0xd7, 0x4e, 0x9e, 0xeb, 0xc5, 0x39, 0x17, 0xfc, + 0x3f, 0xd8, 0x3c, 0x37, 0x6c, 0x6f, 0x7f, 0xbf, 0x55, 0x56, 0xaa, 0x17, 0x4f, 0x9e, 0xeb, 0x79, + 0xbe, 0x86, 0xdb, 0xe0, 0xca, 0xb9, 0xc4, 0xf6, 0x41, 0xa3, 0xd1, 0x6c, 0xb7, 0xcb, 0x0b, 0xd5, + 0xe2, 0xc9, 0x73, 0x7d, 0x39, 0x33, 0xab, 0xf9, 0x67, 0x3f, 0xa8, 0x39, 0x7b, 0xff, 0xcd, 0x1f, + 0x6a, 0xee, 0xe5, 0xa9, 0xaa, 0xbc, 0x39, 0x55, 0x95, 0xb7, 0xa7, 0xaa, 0xf2, 0xfb, 0xa9, 0xaa, + 0x7c, 0xf7, 0x5e, 0xcd, 0xbd, 0x7d, 0xaf, 0xe6, 0x7e, 0x7b, 0xaf, 0xe6, 0x9e, 0x6c, 0xcf, 0xa9, + 0xc8, 0x1f, 0x92, 0xa0, 0xed, 0x00, 0x75, 0x98, 0xb5, 0xdf, 0x12, 0x1f, 0xbf, 0xe3, 0xe9, 0xf7, + 0x5a, 0x08, 0xda, 0xb9, 0x20, 0x1a, 0xf5, 0xc6, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4a, 0x69, + 0x76, 0x1a, 0xce, 0x07, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { @@ -461,6 +465,9 @@ func (this *Params) Equal(that interface{}) bool { return false } } + if this.HookMaxGas != that1.HookMaxGas { + return false + } return true } func (this *BridgeInfo) Equal(that interface{}) bool { @@ -575,6 +582,11 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.HookMaxGas != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.HookMaxGas)) + i-- + dAtA[i] = 0x38 + } if len(m.FeeWhitelist) > 0 { for iNdEx := len(m.FeeWhitelist) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.FeeWhitelist[iNdEx]) @@ -896,6 +908,9 @@ func (m *Params) Size() (n int) { n += 1 + l + sovTypes(uint64(l)) } } + if m.HookMaxGas != 0 { + n += 1 + sovTypes(uint64(m.HookMaxGas)) + } return n } @@ -1199,6 +1214,25 @@ func (m *Params) Unmarshal(dAtA []byte) error { } m.FeeWhitelist = append(m.FeeWhitelist, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HookMaxGas", wireType) + } + m.HookMaxGas = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.HookMaxGas |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:])