Clean-up SyncWithWallets/SyncTransaction

This commit is contained in:
Cozz Lovan
2014-08-17 17:38:26 +02:00
parent b3ec053082
commit 0d27dad845
2 changed files with 2 additions and 8 deletions

View File

@@ -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