From d9e2183c50f50465b9f173171fee240949bf8bd2 Mon Sep 17 00:00:00 2001 From: Karl-Johan Alm Date: Sun, 9 May 2021 22:22:19 +0900 Subject: rpc: include OBJ_USER_KEY in RPCArg constructor checks --- src/rpc/util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/rpc/util.h b/src/rpc/util.h index 8ec18b2f35..06381d504c 100644 --- a/src/rpc/util.h +++ b/src/rpc/util.h @@ -173,7 +173,7 @@ struct RPCArg { m_oneline_description{std::move(oneline_description)}, m_type_str{std::move(type_str)} { - CHECK_NONFATAL(type != Type::ARR && type != Type::OBJ); + CHECK_NONFATAL(type != Type::ARR && type != Type::OBJ && type != Type::OBJ_USER_KEYS); } RPCArg( @@ -193,7 +193,7 @@ struct RPCArg { m_oneline_description{std::move(oneline_description)}, m_type_str{std::move(type_str)} { - CHECK_NONFATAL(type == Type::ARR || type == Type::OBJ); + CHECK_NONFATAL(type == Type::ARR || type == Type::OBJ || type == Type::OBJ_USER_KEYS); } bool IsOptional() const; -- cgit v1.2.3