Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
convert to uint64
Browse files Browse the repository at this point in the history
  • Loading branch information
cmwaters committed Feb 17, 2021
1 parent 1503252 commit 6bf966b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rfc/004-reverse-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ message Snapshot {
uint32 chunks = 3; // Number of chunks in the snapshot
bytes hash = 4; // Arbitrary snapshot hash, equal only if identical
bytes metadata = 5; // Arbitrary application metadata
int64 backfill_height = 6; // Height to backfill blocks from before starting application (inclusive)
uint64 backfill_height = 6; // Height to backfill blocks from before starting application (inclusive)
}
```

Expand All @@ -82,8 +82,8 @@ The application has control of block retention via `retain_height`, called here:
```proto
message ResponseCommit {
// reserve 1
bytes data = 2;
int64 retain_height = 3;
bytes data = 2;
uint64 retain_height = 3;
}
```

Expand Down

0 comments on commit 6bf966b

Please sign in to comment.