From db107f74c8b9a5a906fd4b1d2820e06ab8aa6754 Mon Sep 17 00:00:00 2001 From: "Vladimir N. Korotenko" Date: Tue, 11 Nov 2025 12:11:30 +0300 Subject: [PATCH] Change in sttus info --- dm-cli/AccountStatus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dm-cli/AccountStatus.cpp b/dm-cli/AccountStatus.cpp index 0a28fae..21d4246 100644 --- a/dm-cli/AccountStatus.cpp +++ b/dm-cli/AccountStatus.cpp @@ -30,8 +30,8 @@ void AccountHelp(bool isRussian) int AccountStatus(const std::string address, const char* bkaddress, bool isDebug) { // curl "https://testnet-dm.bitdeals.org/api/v1/account/status?address=mnumHs9HQMrw2Q1iKLNnx9NzExS7nMLmyp" - string url("curl -s \"https://"); - url += address + "/api/v1/account/status?address=" + bkaddress + "\""; + string url("curl "); + url += address + "/api/v1/account/status?address=" + bkaddress ; string result = ExecCommand(url.c_str()); nlohmann::json jsonData = nlohmann::json::parse(result);