mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
17 lines
462 B
Protocol Buffer
17 lines
462 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ibc.lightclients.localhost.v2;
|
||
|
|
||
|
option go_package = "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost;localhost";
|
||
|
|
||
|
import "ibc/core/client/v1/client.proto";
|
||
|
import "gogoproto/gogo.proto";
|
||
|
|
||
|
// ClientState defines the 09-localhost client state
|
||
|
message ClientState {
|
||
|
option (gogoproto.goproto_getters) = false;
|
||
|
|
||
|
// the latest block height
|
||
|
ibc.core.client.v1.Height latest_height = 1 [(gogoproto.nullable) = false];
|
||
|
}
|