aboutsummaryrefslogtreecommitdiff
path: root/libbbot/manifest.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-26 18:01:41 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-26 18:19:59 +0300
commitfa00e853d17b40d9112cb856ca1f08dfe8500f20 (patch)
treeda7e677b3e33299ace4aefeda6470fd2e84e5f2c /libbbot/manifest.hxx
parent48fcedb09820aa8d99f1c051627a4f1335dbed6f (diff)
Store result request challenge as binary value
Diffstat (limited to 'libbbot/manifest.hxx')
-rw-r--r--libbbot/manifest.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbbot/manifest.hxx b/libbbot/manifest.hxx
index 4ae8b26..b981ab4 100644
--- a/libbbot/manifest.hxx
+++ b/libbbot/manifest.hxx
@@ -296,12 +296,12 @@ namespace bbot
// The answer to challenge in the task response.
//
- butl::optional<std::string> challenge;
+ butl::optional<std::vector<char>> challenge;
result_manifest result;
result_request_manifest (std::string s,
- butl::optional<std::string> c,
+ butl::optional<std::vector<char>> c,
result_manifest r)
: session (std::move (s)),
challenge (std::move (c)),