diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-11-21 13:04:56 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-11-21 13:05:01 +0200 |
commit | 830904ca4efeb49c87af246a975bc307e2d5f777 (patch) | |
tree | 70c92777fc82a486b459d89dac53bdfd4bbbc377 /src/rpc | |
parent | Merge pull request #490 (diff) | |
parent | Relay transactions when they linger too long in the pool (diff) | |
download | monero-830904ca4efeb49c87af246a975bc307e2d5f777.tar.xz |
Merge pull request #492
932994c Relay transactions when they linger too long in the pool (moneromooo-monero)
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index f2a464c20..f5e700033 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -315,7 +315,7 @@ namespace cryptonote cryptonote_connection_context fake_context = AUTO_VAL_INIT(fake_context); tx_verification_context tvc = AUTO_VAL_INIT(tvc); - if(!m_core.handle_incoming_tx(tx_blob, tvc, false)) + if(!m_core.handle_incoming_tx(tx_blob, tvc, false, false)) { LOG_PRINT_L0("[on_send_raw_tx]: Failed to process tx"); res.status = "Failed"; |