From f0b573e72a411cf3272ed73aeb3876d90d677f37 Mon Sep 17 00:00:00 2001 From: gohumble Date: Sun, 5 May 2024 14:19:43 +0200 Subject: [PATCH] Revert "using uint32" This reverts commit 676516371d4efc7bc5fa1360e7279131ec2110a8. --- keys.proto | 2 +- signature.proto | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/keys.proto b/keys.proto index 85a1f09..50253bd 100644 --- a/keys.proto +++ b/keys.proto @@ -16,5 +16,5 @@ message Keyset { string unit = 2; string mint_url = 3; bool active = 4; - map keys = 5; + map keys = 5; } diff --git a/signature.proto b/signature.proto index 3c9cae0..ce0c300 100644 --- a/signature.proto +++ b/signature.proto @@ -1,10 +1,9 @@ syntax = "proto3"; package cashu.v1; option go_package = "github.com/cashu/rpc/signature"; -import "tagger/tagger.proto"; message BlindedSignature { - string id = 1 [(tagger.tags) = "json:\"id\""]; - uint32 amount = 2 [(tagger.tags) = "json:\"amount\""]; - string C_ = 3[(tagger.tags) = "json:\"C_\""]; + string id = 1; + uint64 amount = 2; + string C_ = 3; }