Skip to content

Commit ae1beff

Browse files
remove boost list_of
Signed-off-by: Pasta <pasta@dashboost.org>
1 parent d76cd90 commit ae1beff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rpc/mining.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ UniValue estimaterawfee(const JSONRPCRequest& request)
938938
+ HelpExampleCli("estimaterawfee", "6 0.9 1")
939939
);
940940

941-
RPCTypeCheck(request.params, boost::assign::list_of(UniValue::VNUM)(UniValue::VNUM)(UniValue::VNUM), true);
941+
RPCTypeCheck(request.params, {UniValue::VNUM, UniValue::VNUM, UniValue::VNUM}, true);
942942
RPCTypeCheckArgument(request.params[0], UniValue::VNUM);
943943
int nBlocks = request.params[0].get_int();
944944
double threshold = 0.95;

0 commit comments

Comments
 (0)