diff options
| author | Gavin Andresen <[email protected]> | 2013-10-29 18:01:57 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-10-29 18:01:57 -0700 |
| commit | e13934c94eb6e95c21e04b92c4b0775b2bded67e (patch) | |
| tree | c4ed663519a61e6d3a77478c25381ede579f129c /src/rpcrawtransaction.cpp | |
| parent | Merge pull request #3162 from sipa/saninsert (diff) | |
| parent | Break dependency of init on wallet. (diff) | |
| download | discoin-e13934c94eb6e95c21e04b92c4b0775b2bded67e.tar.xz discoin-e13934c94eb6e95c21e04b92c4b0775b2bded67e.zip | |
Merge pull request #3115 from sipa/walletmain
Interaction cleanups between main and wallet
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 d5bd39cb4..4d1381bc2 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -560,7 +560,7 @@ Value sendrawtransaction(const Array& params, bool fHelp) // Not in block, but already in the memory pool; will drop // through to re-relay it. } else { - SyncWithWallets(hashTx, tx, NULL, true); + SyncWithWallets(hashTx, tx, NULL); } RelayTransaction(tx, hashTx); |