diff options
| author | Riccardo Spagni <ric@spagni.net> | 2018-11-04 20:43:08 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2018-11-04 20:43:08 +0200 |
| commit | 5918ef93f8cee191cf0db18ce51b6299ce14b2eb (patch) | |
| tree | d499457b506eed9060a7ae50cf0bc85aeb3677b6 /src | |
| parent | 69b646494b17a02e381128e54caebccf2d2b7729 (diff) | |
| parent | 3a85af403dd92263d3715886a3e12c5f84f19d6f (diff) | |
| download | monzero-core-5918ef93f8cee191cf0db18ce51b6299ce14b2eb.tar.gz monzero-core-5918ef93f8cee191cf0db18ce51b6299ce14b2eb.tar.xz monzero-core-5918ef93f8cee191cf0db18ce51b6299ce14b2eb.zip | |
Merge pull request #4683
3a85af40 core: fix handle_incoming_tx* comment about return value (moneromooo-monero)
Diffstat (limited to 'src')
| -rw-r--r-- | src/cryptonote_core/cryptonote_core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.h b/src/cryptonote_core/cryptonote_core.h index 80c452f53..4eca2a57b 100644 --- a/src/cryptonote_core/cryptonote_core.h +++ b/src/cryptonote_core/cryptonote_core.h @@ -117,7 +117,7 @@ namespace cryptonote * @param relayed whether or not the transaction was relayed to us * @param do_not_relay whether to prevent the transaction from being relayed * - * @return true if the transaction made it to the transaction pool, otherwise false + * @return true if the transaction was accepted, false otherwise */ bool handle_incoming_tx(const blobdata& tx_blob, tx_verification_context& tvc, bool keeped_by_block, bool relayed, bool do_not_relay); @@ -133,7 +133,7 @@ namespace cryptonote * @param relayed whether or not the transactions were relayed to us * @param do_not_relay whether to prevent the transactions from being relayed * - * @return true if the transactions made it to the transaction pool, otherwise false + * @return true if the transactions were accepted, false otherwise */ bool handle_incoming_txs(const std::vector<blobdata>& tx_blobs, std::vector<tx_verification_context>& tvc, bool keeped_by_block, bool relayed, bool do_not_relay); |
