Skip to content

Commit

Permalink
Fix path to proofs in protos
Browse files Browse the repository at this point in the history
  • Loading branch information
alpe committed Sep 20, 2022
1 parent 5adb9e9 commit 8ee2c93
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions third_party/proto/confio/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This project can be found at: https://github.com/confio/ics23
2 changes: 1 addition & 1 deletion third_party/proto/confio/proofs.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
syntax = "proto3";

package ics23;
option go_package = "github.com/confio/ics23/go";

enum HashOp {
// NO_HASH is the default if no data passed. Note this is an illegal argument some places.
Expand All @@ -11,6 +10,7 @@ enum HashOp {
KECCAK = 3;
RIPEMD160 = 4;
BITCOIN = 5; // ripemd160(sha256(x))
SHA512_256 = 6;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion third_party/proto/ibc/core/commitment/v1/commitment.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package ibc.core.commitment.v1;
option go_package = "github.com/cosmos/ibc-go/v3/modules/core/23-commitment/types";

import "gogoproto/gogo.proto";
import "proofs.proto";
import "confio/proofs.proto";

// MerkleRoot defines a merkle root hash.
// In the Cosmos SDK, the AppHash of a block header becomes the root.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ option go_package = "github.com/cosmos/ibc-go/v3/modules/light-clients/07-tender

import "tendermint/types/validator.proto";
import "tendermint/types/types.proto";
import "proofs.proto";
import "confio/proofs.proto";
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
import "ibc/core/client/v1/client.proto";
Expand Down

0 comments on commit 8ee2c93

Please sign in to comment.