Skip to content

Commit

Permalink
simpler structure
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Feb 1, 2024
1 parent 701870d commit fb5fef8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions definitions/mock/ibc.mock.proto
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
syntax = "proto3";
package ibc.mock;

import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
import "ibc/core/client/v1/client.proto";

message Header {
ibc.core.client.v1.Height height = 1;
google.protobuf.Timestamp timestamp = 2;
uint64 timestamp = 2;
}

message ClientState {
Header header = 1;
google.protobuf.Duration trusing_period = 2;
google.protobuf.Duration max_clock_drift = 3;
uint64 trusing_period = 2;
bool frozen = 4;
}

message ConsensusState {
Header header = 1;
bytes bytes = 2;
}

message Misbehaviour {
Expand Down

0 comments on commit fb5fef8

Please sign in to comment.