gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated: switching from allowHttp to n


From: gnunet
Subject: [taler-wallet-core] branch master updated: switching from allowHttp to noHttp so test script wont break
Date: Mon, 24 Apr 2023 20:40:16 +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 0dc482c2d switching from allowHttp to noHttp so test script wont break
0dc482c2d is described below

commit 0dc482c2ded986425108366de9ff7d95b3ca907e
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Mon Apr 24 15:40:09 2023 -0300

    switching from allowHttp to noHttp so test script wont break
---
 packages/taler-wallet-cli/src/index.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-cli/src/index.ts 
b/packages/taler-wallet-cli/src/index.ts
index 0f378f360..7fd218941 100644
--- a/packages/taler-wallet-cli/src/index.ts
+++ b/packages/taler-wallet-cli/src/index.ts
@@ -190,7 +190,7 @@ export const walletCli = clk
   .flag("noThrottle", ["--no-throttle"], {
     help: "Don't do any request throttling.",
   })
-  .flag("allowHttp", ["--allow-http"], {
+  .flag("noHttp", ["--no-http"], {
     help: "Allow unsafe http connections.",
   })
   .flag("version", ["-v", "--version"], {
@@ -243,7 +243,7 @@ async function createLocalWallet(
   const dbPath = walletCliArgs.wallet.walletDbFile ?? defaultWalletDbPath;
   const myHttpLib = createPlatformHttpLib({
     enableThrottling: walletCliArgs.wallet.noThrottle ? false : true,
-    allowHttp: walletCliArgs.wallet.allowHttp ? true : false,
+    allowHttp: walletCliArgs.wallet.noHttp ? false : true,
   });
   const wallet = await createNativeWalletHost({
     persistentStoragePath: dbPath !== ":memory:" ? dbPath : undefined,

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