From b1f15b218be8dfd1d2dbd375d469794bb7326748 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 13 Jun 2013 22:28:03 +0200 Subject: Remove broken option to skip input checking for wallet txn. --- src/rpcrawtransaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rpcrawtransaction.cpp') diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 917c2f5de9..61cb4e390e 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -555,7 +555,7 @@ Value sendrawtransaction(const Array& params, bool fHelp) if (!fHave) { // push to local node CValidationState state; - if (!mempool.accept(state, tx, true, false, NULL)) + if (!mempool.accept(state, tx, false, NULL)) throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX rejected"); // TODO: report validation state } } -- cgit v1.2.3