From d1bb41b5edcb2d74e19d6f82b892dc6febe78df4 Mon Sep 17 00:00:00 2001 From: "Vladimir N. Korotenko" Date: Thu, 27 Nov 2025 08:58:56 +0300 Subject: [PATCH] Close #21 remove default value to at parameter --- dm-cli/Deals.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dm-cli/Deals.cpp b/dm-cli/Deals.cpp index fe21a17..b571932 100644 --- a/dm-cli/Deals.cpp +++ b/dm-cli/Deals.cpp @@ -134,8 +134,7 @@ int Deals::Create() string pay; at = GetVal("-a", "--at"); - if (at.length() == 0) - at = "https://testnet-dm2.bitdeals.org"; + // if (at.length() == 0) at = "https://testnet-dm2.bitdeals.org"; seller = GetVal("-s", "--seller"); customer = GetVal("-c", "--customer"); type = GetVal("-t", "--type");