aboutsummaryrefslogtreecommitdiff
path: root/act/act.proto
diff options
context:
space:
mode:
Diffstat (limited to 'act/act.proto')
-rw-r--r--act/act.proto6
1 files changed, 4 insertions, 2 deletions
diff --git a/act/act.proto b/act/act.proto
index f40f608..1c39823 100644
--- a/act/act.proto
+++ b/act/act.proto
@@ -91,10 +91,12 @@ message TokensResponse {
// An actual token recovered from the TokenResponse.
message Token {
- // Serialized BigNum corresponding to the nonce for this token.
- string nonce = 1;
+ reserved 1;
oneof token_oneof {
TokenV0 token_v0 = 2;
}
+
+ // Serialized BigNum corresponding to the nonce for this token.
+ bytes nonce_bytes = 3;
}