Skip to content

Commit

Permalink
fix:pos tokenIds types
Browse files Browse the repository at this point in the history
  • Loading branch information
py-zoid committed Apr 24, 2024
1 parent cc4d1fc commit b9687e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schemas/depositblock.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ message DepositBlock {
required string depositReceiver = 5;
required string rootToken = 6;
repeated string amounts = 7;
repeated uint64 tokenIds = 8;
repeated string tokenIds = 8;
string rootTunnelAddress = 9;
bool refuel = 10;
string nonce = 11;
Expand Down
2 changes: 1 addition & 1 deletion schemas/withdrawblock.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ message WithdrawBlock {
uint64 burnTransactionBlockNumber = 6;
string transactionType = 7;
repeated string amounts = 8;
repeated uint64 tokenIds = 9;
repeated string tokenIds = 9;
required bool isDecoded = 10;
required string rootToken = 11;
string rootTunnel = 12;
Expand Down

0 comments on commit b9687e8

Please sign in to comment.