Fix path to proofs in protos

This commit is contained in:
Alex Peters
2022-09-20 15:54:26 +02:00
parent 5adb9e9f7f
commit 8ee2c9330c
4 changed files with 4 additions and 3 deletions

1
third_party/proto/confio/README.md vendored Normal file
View File

@@ -0,0 +1 @@
This project can be found at: https://github.com/confio/ics23

View File

@@ -1,7 +1,6 @@
syntax = "proto3"; syntax = "proto3";
package ics23; package ics23;
option go_package = "github.com/confio/ics23/go";
enum HashOp { enum HashOp {
// NO_HASH is the default if no data passed. Note this is an illegal argument some places. // NO_HASH is the default if no data passed. Note this is an illegal argument some places.
@@ -11,6 +10,7 @@ enum HashOp {
KECCAK = 3; KECCAK = 3;
RIPEMD160 = 4; RIPEMD160 = 4;
BITCOIN = 5; // ripemd160(sha256(x)) BITCOIN = 5; // ripemd160(sha256(x))
SHA512_256 = 6;
} }
/** /**

View File

@@ -5,7 +5,7 @@ package ibc.core.commitment.v1;
option go_package = "github.com/cosmos/ibc-go/v3/modules/core/23-commitment/types"; option go_package = "github.com/cosmos/ibc-go/v3/modules/core/23-commitment/types";
import "gogoproto/gogo.proto"; import "gogoproto/gogo.proto";
import "proofs.proto"; import "confio/proofs.proto";
// MerkleRoot defines a merkle root hash. // MerkleRoot defines a merkle root hash.
// In the Cosmos SDK, the AppHash of a block header becomes the root. // In the Cosmos SDK, the AppHash of a block header becomes the root.

View File

@@ -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/validator.proto";
import "tendermint/types/types.proto"; import "tendermint/types/types.proto";
import "proofs.proto"; import "confio/proofs.proto";
import "google/protobuf/duration.proto"; import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto"; import "google/protobuf/timestamp.proto";
import "ibc/core/client/v1/client.proto"; import "ibc/core/client/v1/client.proto";