gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-wallet-webex] 01/04: canonicalize account info JSON


From: gnunet
Subject: [GNUnet-SVN] [taler-wallet-webex] 01/04: canonicalize account info JSON when collecting them
Date: Sun, 27 Aug 2017 06:48:03 +0200

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

dold pushed a commit to branch master
in repository wallet-webex.

commit ccc6d822424be9b257e63b0d71f2d46f2523fe3e
Author: Florian Dold <address@hidden>
AuthorDate: Sun Aug 27 04:35:24 2017 +0200

    canonicalize account info JSON when collecting them
---
 src/wallet.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/wallet.ts b/src/wallet.ts
index b892e2e4..72c8a70f 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -2413,7 +2413,7 @@ export class Wallet {
     const senderWiresSet = new Set();
     await this.q().iter(Stores.reserves).map((x) => {
       if (x.senderWire) {
-        senderWiresSet.add(JSON.stringify(x.senderWire));
+        senderWiresSet.add(canonicalJson(x.senderWire));
       }
     }).run();
     const senderWires = Array.from(senderWiresSet).map((x) => JSON.parse(x));

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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