diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-04-14 16:20:41 +0900 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-04-14 16:20:41 +0900 |
| commit | c2e9866fc6b20c3bd6d865c081ff52c1874978a2 (patch) | |
| tree | 1a95b45492e5073266e92e09d1e60959d545706e /src/wallet/wallet2.cpp | |
| parent | da277e17b54b307b704597ccbae2bc35ef28e238 (diff) | |
| parent | d662ab5cec0b72780d0c24a2ba299237780d2369 (diff) | |
| download | monzero-core-c2e9866fc6b20c3bd6d865c081ff52c1874978a2.tar.gz monzero-core-c2e9866fc6b20c3bd6d865c081ff52c1874978a2.tar.xz monzero-core-c2e9866fc6b20c3bd6d865c081ff52c1874978a2.zip | |
Merge pull request #797
d662ab5 rpc: print human readable time since received when printing pool (moneromooo-monero)
5c9dd23 rpc: add a do_not_relay boolean to tx submission (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.cpp')
| -rw-r--r-- | src/wallet/wallet2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index a9a65535f..cdd472528 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1974,6 +1974,7 @@ void wallet2::commit_tx(pending_tx& ptx) COMMAND_RPC_SEND_RAW_TX::request req; req.tx_as_hex = epee::string_tools::buff_to_hex_nodelimer(tx_to_blob(ptx.tx)); + req.do_not_relay = false; COMMAND_RPC_SEND_RAW_TX::response daemon_send_resp; m_daemon_rpc_mutex.lock(); bool r = epee::net_utils::invoke_http_json_remote_command2(m_daemon_address + "/sendrawtransaction", req, daemon_send_resp, m_http_client, 200000); |
