gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated: missing case for amount


From: gnunet
Subject: [taler-wallet-core] branch master updated: missing case for amount
Date: Thu, 09 Nov 2023 15:06:53 +0100

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 bba84c52d missing case for amount
bba84c52d is described below

commit bba84c52d6e3f14fce05f2d8316c09aaf7379753
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Thu Nov 9 11:06:23 2023 -0300

    missing case for amount
---
 packages/taler-util/src/clk.ts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/packages/taler-util/src/clk.ts b/packages/taler-util/src/clk.ts
index f9f260f83..9e80a84c7 100644
--- a/packages/taler-util/src/clk.ts
+++ b/packages/taler-util/src/clk.ts
@@ -340,6 +340,8 @@ export namespace clk {
           myArgs[def.name] = Number.parseInt(value);
         } else if (def.conv == null || def.conv === STRING) {
           myArgs[def.name] = value;
+        } else if (def.conv == null || def.conv === AMOUNT) {
+          myArgs[def.name] = value;
         } else {
           throw Error("unknown converter");
         }

-- 
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]