We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fbd381 commit e505b36Copy full SHA for e505b36
2 files changed
apps/testapp/Dockerfile
@@ -21,6 +21,7 @@ WORKDIR /ev-node
21
# Dependencies are only re-downloaded when go.mod or go.sum change.
22
COPY go.mod go.sum ./
23
COPY apps/testapp/go.mod apps/testapp/go.sum ./apps/testapp/
24
+COPY core/go.mod core/go.sum ./core/
25
RUN go mod download && (cd apps/testapp && go mod download)
26
27
# Copy the rest of the source and build.
proto/evnode/v1/evnode.proto
@@ -38,7 +38,7 @@ message Header {
38
bytes validator_hash = 11;
39
// Chain ID the block belongs to
40
string chain_id = 12;
41
- reserved 5, 7, 9, 13;
+ reserved 5, 7, 9;
42
}
43
44
// SignedHeader is a header with a signature and a signer.
0 commit comments