Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

fix: height type was uint32 instead of int64 #123

Merged
merged 4 commits into from
Jul 23, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/platform/v0/objective-c/Platform.pbobjc.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions clients/platform/v0/objective-c/Platform.pbobjc.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions clients/platform/v0/python/platform_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions protos/platform/v0/platform.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ message Proof {
}

message ResponseMetadata {
uint32 height = 1;
uint32 core_chain_locked_height = 2;
int64 height = 1;
int64 core_chain_locked_height = 2;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uint32

}

message StateTransitionBroadcastError {
Expand Down