diff options
| author | Gavin Andresen <[email protected]> | 2013-08-27 15:51:57 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-11-04 11:27:02 +1000 |
| commit | 319b11607f8592d7ef67ec82fa73545ad7430974 (patch) | |
| tree | 35a62a9d0df1c0bb9157e8cc85ab086c01c55217 /src/rpcrawtransaction.cpp | |
| parent | Merge pull request #3193 from joshtriplett/patch-1 (diff) | |
| download | discoin-319b11607f8592d7ef67ec82fa73545ad7430974.tar.xz discoin-319b11607f8592d7ef67ec82fa73545ad7430974.zip | |
Refactor: CTxMempool class to its own txmempool.{cpp,h}
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 49987ecc4..4771094e1 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -550,7 +550,7 @@ Value sendrawtransaction(const Array& params, bool fHelp) if (!fHave) { // push to local node CValidationState state; - if (!mempool.accept(state, tx, false, NULL, !fOverrideFees)) + if (!AcceptToMemoryPool(mempool, state, tx, false, NULL, !fOverrideFees)) throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "TX rejected"); // TODO: report validation state } } |