gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: match the exchange spec


From: gnunet
Subject: [taler-wallet-core] branch master updated: match the exchange spec
Date: Mon, 02 Oct 2023 18:53:39 +0200

This is an automated email from the git hooks/post-receive script.

sebasjm pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new e54df1f16 match the exchange spec
e54df1f16 is described below

commit e54df1f167333de654a9a98545bae8ef495d6e52
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Mon Oct 2 13:53:32 2023 -0300

    match the exchange spec
---
 packages/taler-util/src/taler-types.ts | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/packages/taler-util/src/taler-types.ts 
b/packages/taler-util/src/taler-types.ts
index eaba1ae3d..d8fdc2519 100644
--- a/packages/taler-util/src/taler-types.ts
+++ b/packages/taler-util/src/taler-types.ts
@@ -1922,22 +1922,13 @@ export interface BatchDepositSuccess {
   // Array of deposit confirmation signatures from the exchange
   // Entries must be in the same order the coins were given
   // in the batch deposit request.
-  exchange_sigs: DepositConfirmationSignature[];
+  exchange_sig: EddsaSignatureString;
 }
 
-export const codecForDepositConfirmationSignature =
-  (): Codec<DepositConfirmationSignature> =>
-    buildCodecForObject<DepositConfirmationSignature>()
-      .property("exchange_sig", codecForString())
-      .build("DepositConfirmationSignature");
-
 export const codecForBatchDepositSuccess = (): Codec<BatchDepositSuccess> =>
   buildCodecForObject<BatchDepositSuccess>()
     .property("exchange_pub", codecForString())
-    .property(
-      "exchange_sigs",
-      codecForList(codecForDepositConfirmationSignature()),
-    )
+    .property("exchange_sig", codecForString())
     .property("exchange_timestamp", codecForTimestamp)
     .property("transaction_base_url", codecOptional(codecForString()))
     .build("BatchDepositSuccess");

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]