aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCozz Lovan <cozzlovan@yahoo.com>2014-08-17 17:38:26 +0200
committerCozz Lovan <cozzlovan@yahoo.com>2014-08-17 17:39:30 +0200
commit0d27dad8452704fa849832a0d28bf3e1b564d7b7 (patch)
treeb9d927c38e47dea1e75b99be30d23de5e78e90e1 /src
parentb3ec053082c96233512c076eebc486b16a317b91 (diff)
downloadbitcoin-0d27dad8452704fa849832a0d28bf3e1b564d7b7.tar.xz
Clean-up SyncWithWallets/SyncTransaction
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp6
-rw-r--r--src/rpcrawtransaction.cpp4
2 files changed, 2 insertions, 8 deletions
diff --git a/src/main.cpp b/src/main.cpp
index e135e93adb..d8f96ed2c3 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1022,7 +1022,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa
pool.addUnchecked(hash, entry);
}
- g_signals.SyncTransaction(tx, NULL);
+ SyncWithWallets(tx, NULL);
return true;
}
@@ -1857,10 +1857,6 @@ bool ConnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, C
int64_t nTime3 = GetTimeMicros(); nTimeIndex += nTime3 - nTime2;
LogPrint("bench", " - Index writing: %.2fms [%.2fs]\n", 0.001 * (nTime3 - nTime2), nTimeIndex * 0.000001);
- // Watch for transactions paying to me
- BOOST_FOREACH(const CTransaction& tx, block.vtx)
- g_signals.SyncTransaction(tx, &block);
-
// Watch for changes to the previous coinbase transaction.
static uint256 hashPrevBestCoinBase;
g_signals.UpdatedTransaction(hashPrevBestCoinBase);
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp
index 763615120a..7cd704193d 100644
--- a/src/rpcrawtransaction.cpp
+++ b/src/rpcrawtransaction.cpp
@@ -738,9 +738,7 @@ Value sendrawtransaction(const Array& params, bool fHelp)
if (!fHaveMempool && !fHaveChain) {
// push to local node and sync with wallets
CValidationState state;
- if (AcceptToMemoryPool(mempool, state, tx, false, NULL, !fOverrideFees))
- SyncWithWallets(tx, NULL);
- else {
+ if (!AcceptToMemoryPool(mempool, state, tx, false, NULL, !fOverrideFees)) {
if(state.IsInvalid())
throw JSONRPCError(RPC_TRANSACTION_REJECTED, strprintf("%i: %s", state.GetRejectCode(), state.GetRejectReason()));
else