x/ibc: client consensus_height event (#6381)
This commit is contained in:
parent
6851c844b3
commit
55796fb3e7
|
@ -1,6 +1,8 @@
|
|||
package client
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
||||
"github.com/cosmos/cosmos-sdk/x/evidence"
|
||||
|
@ -15,7 +17,10 @@ import (
|
|||
func HandleMsgCreateClient(ctx sdk.Context, k Keeper, msg exported.MsgCreateClient) (*sdk.Result, error) {
|
||||
clientType := exported.ClientTypeFromString(msg.GetClientType())
|
||||
|
||||
var clientState exported.ClientState
|
||||
var (
|
||||
clientState exported.ClientState
|
||||
consensusHeight uint64
|
||||
)
|
||||
|
||||
switch clientType {
|
||||
case exported.Tendermint:
|
||||
|
@ -29,9 +34,11 @@ func HandleMsgCreateClient(ctx sdk.Context, k Keeper, msg exported.MsgCreateClie
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
consensusHeight = msg.GetConsensusState().GetHeight()
|
||||
case exported.Localhost:
|
||||
// msg client id is always "localhost"
|
||||
clientState = localhosttypes.NewClientState(ctx.ChainID(), ctx.BlockHeight())
|
||||
consensusHeight = uint64(ctx.BlockHeight())
|
||||
default:
|
||||
return nil, sdkerrors.Wrap(ErrInvalidClientType, msg.GetClientType())
|
||||
}
|
||||
|
@ -48,6 +55,7 @@ func HandleMsgCreateClient(ctx sdk.Context, k Keeper, msg exported.MsgCreateClie
|
|||
EventTypeCreateClient,
|
||||
sdk.NewAttribute(AttributeKeyClientID, msg.GetClientID()),
|
||||
sdk.NewAttribute(AttributeKeyClientType, msg.GetClientType()),
|
||||
sdk.NewAttribute(types.AttributeKeyConsensusHeight, fmt.Sprintf("%d", consensusHeight)),
|
||||
),
|
||||
sdk.NewEvent(
|
||||
sdk.EventTypeMessage,
|
||||
|
|
|
@ -65,8 +65,9 @@ func (k Keeper) UpdateClient(ctx sdk.Context, clientID string, header exported.H
|
|||
}
|
||||
|
||||
var (
|
||||
consensusState exported.ConsensusState
|
||||
err error
|
||||
consensusState exported.ConsensusState
|
||||
consensusHeight uint64
|
||||
err error
|
||||
)
|
||||
|
||||
switch clientType {
|
||||
|
@ -80,6 +81,7 @@ func (k Keeper) UpdateClient(ctx sdk.Context, clientID string, header exported.H
|
|||
ctx.ChainID(), // use the chain ID from context since the client is from the running chain (i.e self).
|
||||
ctx.BlockHeight(),
|
||||
)
|
||||
consensusHeight = uint64(ctx.BlockHeight())
|
||||
default:
|
||||
err = types.ErrInvalidClientType
|
||||
}
|
||||
|
@ -93,6 +95,7 @@ func (k Keeper) UpdateClient(ctx sdk.Context, clientID string, header exported.H
|
|||
// we don't set consensus state for localhost client
|
||||
if header != nil && clientType != exported.Localhost {
|
||||
k.SetClientConsensusState(ctx, clientID, header.GetHeight(), consensusState)
|
||||
consensusHeight = consensusState.GetHeight()
|
||||
}
|
||||
|
||||
k.Logger(ctx).Info(fmt.Sprintf("client %s updated to height %d", clientID, clientState.GetLatestHeight()))
|
||||
|
@ -103,6 +106,7 @@ func (k Keeper) UpdateClient(ctx sdk.Context, clientID string, header exported.H
|
|||
types.EventTypeUpdateClient,
|
||||
sdk.NewAttribute(types.AttributeKeyClientID, clientID),
|
||||
sdk.NewAttribute(types.AttributeKeyClientType, clientType.String()),
|
||||
sdk.NewAttribute(types.AttributeKeyConsensusHeight, fmt.Sprintf("%d", consensusHeight)),
|
||||
),
|
||||
)
|
||||
|
||||
|
@ -155,6 +159,7 @@ func (k Keeper) CheckMisbehaviourAndUpdateState(ctx sdk.Context, misbehaviour ex
|
|||
types.EventTypeSubmitMisbehaviour,
|
||||
sdk.NewAttribute(types.AttributeKeyClientID, misbehaviour.GetClientID()),
|
||||
sdk.NewAttribute(types.AttributeKeyClientType, misbehaviour.ClientType().String()),
|
||||
sdk.NewAttribute(types.AttributeKeyConsensusHeight, fmt.Sprintf("%d", consensusState.GetHeight())),
|
||||
),
|
||||
)
|
||||
|
||||
|
|
|
@ -8,8 +8,9 @@ import (
|
|||
|
||||
// IBC client events
|
||||
const (
|
||||
AttributeKeyClientID = "client_id"
|
||||
AttributeKeyClientType = "client_type"
|
||||
AttributeKeyClientID = "client_id"
|
||||
AttributeKeyClientType = "client_type"
|
||||
AttributeKeyConsensusHeight = "consensus_height"
|
||||
)
|
||||
|
||||
// IBC client events vars
|
||||
|
|
Loading…
Reference in New Issue