diff options
| author | Matt Corallo <[email protected]> | 2016-12-04 18:53:26 -0800 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2017-01-09 14:15:18 -0500 |
| commit | edded808fc4eee94c178e1779b90d1c87a08c23a (patch) | |
| tree | a12312fa8616361dca5ca877a4d8e580892c19bc /src/rpc/rawtransaction.cpp | |
| parent | Move ORPHAN constants from validation.h to net_processing.h (diff) | |
| download | discoin-edded808fc4eee94c178e1779b90d1c87a08c23a.tar.xz discoin-edded808fc4eee94c178e1779b90d1c87a08c23a.zip | |
Make ATMP optionally return the CTransactionRefs it replaced
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 276ebfda2..e01879adb 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -899,7 +899,7 @@ UniValue sendrawtransaction(const JSONRPCRequest& request) // push to local node and sync with wallets CValidationState state; bool fMissingInputs; - if (!AcceptToMemoryPool(mempool, state, std::move(tx), fLimitFree, &fMissingInputs, false, nMaxRawTxFee)) { + if (!AcceptToMemoryPool(mempool, state, std::move(tx), fLimitFree, &fMissingInputs, NULL, false, nMaxRawTxFee)) { if (state.IsInvalid()) { throw JSONRPCError(RPC_TRANSACTION_REJECTED, strprintf("%i: %s", state.GetRejectCode(), state.GetRejectReason())); } else { |