From ce887eaf4917c337b21aa2e7811804ce003d36be Mon Sep 17 00:00:00 2001 From: brunoerg Date: Sat, 10 Jun 2023 23:26:24 -0300 Subject: [PATCH] rest: bugfix, fix crash error when calling `/deploymentinfo` --- src/rest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest.cpp b/src/rest.cpp index c9e61d70bd0..ba149c1a9ec 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -627,7 +627,7 @@ static bool rest_deploymentinfo(const std::any& context, HTTPRequest* req, const return RESTERR(req, HTTP_BAD_REQUEST, "Block not found"); } - jsonRequest.params.pushKV("blockhash", hash_str); + jsonRequest.params.push_back(hash_str); } req->WriteHeader("Content-Type", "application/json");