diff options
| author | Matt Corallo <[email protected]> | 2013-06-13 22:28:03 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2013-06-13 22:28:03 +0200 |
| commit | b1f15b218be8dfd1d2dbd375d469794bb7326748 (patch) | |
| tree | 352477d43c623219e262d3e9db5149ab01e1ba76 /src/rpcrawtransaction.cpp | |
| parent | Merge pull request #2553 from Diapolo/threads (diff) | |
| download | discoin-b1f15b218be8dfd1d2dbd375d469794bb7326748.tar.xz discoin-b1f15b218be8dfd1d2dbd375d469794bb7326748.zip | |
Remove broken option to skip input checking for wallet txn.
Diffstat (limited to 'src/rpcrawtransaction.cpp')
| -rw-r--r-- | src/rpcrawtransaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 917c2f5de..61cb4e390 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 } } |