diff options
| author | Matt Corallo <[email protected]> | 2012-08-13 05:26:30 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2013-01-16 12:48:02 -0500 |
| commit | 269d9c6492dc275650d2137d53f4afdca88e3216 (patch) | |
| tree | 32ded97569c406479d8393eda9163f3ba488b7b9 /src/rpcrawtransaction.cpp | |
| parent | Add a filter field in CNode, add filterload+filteradd+filterclear (diff) | |
| download | discoin-269d9c6492dc275650d2137d53f4afdca88e3216.tar.xz discoin-269d9c6492dc275650d2137d53f4afdca88e3216.zip | |
Replace RelayMessage with RelayTransaction.
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 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(); } |