Skip to content

Commit

Permalink
And 2 more js tag fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
youkaicountry committed Sep 14, 2021
1 parent 917e056 commit 3deed96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koinos/block_store/block_store.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import "koinos/protocol/protocol.proto";

message block_item {
bytes block_id = 1;
uint64 block_height = 2; [jstype = JS_STRING]
uint64 block_height = 2 [jstype = JS_STRING];
optional protocol.block block = 3;
optional protocol.block_receipt receipt = 4;
}

message block_record {
bytes block_id = 1;
uint64 block_height = 2; [jstype = JS_STRING]
uint64 block_height = 2 [jstype = JS_STRING];
protocol.block block = 3;
optional protocol.block_receipt receipt = 4;
repeated bytes previous_block_ids = 5;
Expand Down

0 comments on commit 3deed96

Please sign in to comment.