From b8b2feabe1ddef18e87ae0b16503f386b74b4df3 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Fri, 28 Feb 2020 07:46:05 +0100 Subject: [PATCH] return type fixed --- src/wallet/plain_wallet_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/plain_wallet_api.h b/src/wallet/plain_wallet_api.h index 6491936d..01dc044d 100644 --- a/src/wallet/plain_wallet_api.h +++ b/src/wallet/plain_wallet_api.h @@ -23,6 +23,6 @@ namespace plain_wallet std::string invoke(hwallet h, const std::string& params); //async api - uint64_t async_call(const std::string& method_name, uint64_t instance_id, const std::string& params); + std::string async_call(const std::string& method_name, uint64_t instance_id, const std::string& params); std::string try_pull_result(uint64_t); } \ No newline at end of file