aboutsummaryrefslogtreecommitdiff
path: root/src/rpcrawtransaction.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-01-17 10:04:08 -0800
committerGavin Andresen <[email protected]>2013-01-17 10:04:08 -0800
commit91f70a75daa7ffb89bbec23ca54e5f2c3fa1a83e (patch)
treed710cfa159d9077e6272b83491a126fb56ff3958 /src/rpcrawtransaction.cpp
parentMerge pull request #2181 from Diapolo/translations (diff)
parentFilter mempool command (diff)
downloaddiscoin-91f70a75daa7ffb89bbec23ca54e5f2c3fa1a83e.tar.xz
discoin-91f70a75daa7ffb89bbec23ca54e5f2c3fa1a83e.zip
Merge pull request #1795 from TheBlueMatt/bloom
Bloom filters
Diffstat (limited to 'src/rpcrawtransaction.cpp')
-rw-r--r--src/rpcrawtransaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp
index 9531b1267..09fbaa30c 100644
--- a/src/rpcrawtransaction.cpp
+++ b/src/rpcrawtransaction.cpp
@@ -558,7 +558,7 @@ Value sendrawtransaction(const Array& params, bool fHelp)
} else {
SyncWithWallets(hashTx, tx, NULL, true);
}
- RelayMessage(CInv(MSG_TX, hashTx), tx);
+ RelayTransaction(tx, hashTx);
return hashTx.GetHex();
}