aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-02-12ringct: save 3 bytes on bulletproof sizemoneromooo-monero1-1/+4
Found by luigi1111
2019-02-12add a bulletproof version, new bulletproof type, and rct configmoneromooo-monero23-140/+184
This makes it easier to modify the bulletproof format
2019-02-12core: include a dummy encrypted payment id when no payment is usedmoneromooo-monero2-14/+58
For better transaction uniformity, even though this wastes space.
2019-02-12core, wallet: remember original text version of destination addressmoneromooo-monero5-10/+33
2019-02-12simplewallet: disable long payment ids by defaultmoneromooo-monero2-13/+38
unless --long-payment-id-support is used
2019-02-12blockchain: fix wrong hf version when popping multiple blocksmoneromooo-monero3-6/+37
Since we keep track of the hf version in the db, we pick it up from there instead of doing the full reorg call, which is quite expensive
2019-02-12simplewallet: remove ability to transfer with detached short payment idsmoneromooo-monero1-31/+2
It seemed like a good idea at the time
2019-02-12blockchain: fix block rate check for empty blockchainsmoneromooo-monero1-1/+3
2019-02-12ignore child process when execJethro Grassie1-0/+4
2019-02-12wallet2: fix ring reuse breaking when using histogrammoneromooo-monero1-0/+3
2019-02-12core: fix unmixable special case allowing ring size below 11moneromooo-monero1-1/+1
2019-02-12blockchain: include number of discarded blocks in --reorg-notifymoneromooo-monero2-3/+5
2019-02-12core: add a few more block rate window sizesmoneromooo-monero1-1/+1
The 10 minute one will never trigger for 0 blocks, as it's still fairly likely to happen even without the actual hash rate changing much, so we add a 20 minute window, where it will (for 0 blocks) and a one hour window.
2019-02-12notify: fix tokenizing being too strictmoneromooo-monero1-1/+1
2019-02-12core: add --block-rate-notifymoneromooo-monero2-0/+33
This runs a command whenever the block rate deviates too much from the expectation
2019-02-12blockchain: add --reorg-notifymoneromooo-monero3-1/+32
This will trigger if a reorg is seen. This may be used to do things like stop automated withdrawals on large reorgs. %s is replaced by the height at the split point %h is replaced by the height of the new chain %n is replaced by the number of new blocks after the reorg
2019-02-12cryptonote_core: warn when the block rate deviates from expectationsmoneromooo-monero4-7/+64
The warning threshold is set to allow a false positive every ten days on average.
2019-02-12notify: handle arbitrary tagsmoneromooo-monero6-6/+113
2019-02-12ArticMine's new block weight algorithmmoneromooo-monero24-54/+1289
This curbs runaway growth while still allowing substantial spikes in block weight Original specification from ArticMine: here is the scaling proposal Define: LongTermBlockWeight Before fork: LongTermBlockWeight = BlockWeight At or after fork: LongTermBlockWeight = min(BlockWeight, 1.4*LongTermEffectiveMedianBlockWeight) Note: To avoid possible consensus issues over rounding the LongTermBlockWeight for a given block should be calculated to the nearest byte, and stored as a integer in the block itself. The stored LongTermBlockWeight is then used for future calculations of the LongTermEffectiveMedianBlockWeight and not recalculated each time. Define: LongTermEffectiveMedianBlockWeight LongTermEffectiveMedianBlockWeight = max(300000, MedianOverPrevious100000Blocks(LongTermBlockWeight)) Change Definition of EffectiveMedianBlockWeight From (current definition) EffectiveMedianBlockWeight = max(300000, MedianOverPrevious100Blocks(BlockWeight)) To (proposed definition) EffectiveMedianBlockWeight = min(max(300000, MedianOverPrevious100Blocks(BlockWeight)), 50*LongTermEffectiveMedianBlockWeight) Notes: 1) There are no other changes to the existing penalty formula, median calculation, fees etc. 2) There is the requirement to store the LongTermBlockWeight of a block unencrypted in the block itself. This is to avoid possible consensus issues over rounding and also to prevent the calculations from becoming unwieldy as we move away from the fork. 3) When the EffectiveMedianBlockWeight cap is reached it is still possible to mine blocks up to 2x the EffectiveMedianBlockWeight by paying the corresponding penalty.
2018-10-26Merge pull request #4716Riccardo Spagni1-0/+5
0406724c Makefile: fix building without a git tree (moneromooo-monero)
2018-10-24Makefile: fix building without a git treemoneromooo-monero1-0/+5
2018-10-23Merge pull request #4705v0.13.0.4Riccardo Spagni1-2/+23
f985d70f wallet2: extend fake out picks away from the gamma pick (moneromooo-monero)
2018-10-23wallet2: extend fake out picks away from the gamma pickmoneromooo-monero1-2/+23
in order to unbias selection from blocks with few txes
2018-10-22Merge pull request #4698Riccardo Spagni2-4/+4
ea723eef update version to 0.13.0.4 (Riccardo Spagni)
2018-10-22Merge pull request #4696Riccardo Spagni1-1/+3
64c8981c Providing user supplied default constructor for expect<void> (Lee Clagett)
2018-10-22update version to 0.13.0.4Riccardo Spagni2-4/+4
2018-10-22Providing user supplied default constructor for expect<void>Lee Clagett1-1/+3
2018-10-20Merge pull request #4670Riccardo Spagni1-1/+4
fea60d6a console_handler: add a global log when exiting via EOF (moneromooo-monero)
2018-10-20Merge pull request #4667Riccardo Spagni1-2/+2
14515ef2 blockchain: move two new verification errors to the verify category (moneromooo-monero)
2018-10-20Merge pull request #4660Riccardo Spagni1-6/+8
742dec8d rpc: fix output distribution caching ignoring chain changes (moneromooo-monero)
2018-10-20Merge pull request #4643Riccardo Spagni2-6/+6
c28ea6b6 device: fixed Ledger Nano S device selection (xiphon)
2018-10-20Merge pull request #4651Riccardo Spagni7-41/+41
8d098ad5 Rename "blackball" for clarity (moneromooo-monero)
2018-10-20Merge pull request #4638Riccardo Spagni1-1/+6
a23c80df core: don't verify range proofs multiple times (moneromooo-monero)
2018-10-20Merge pull request #4636Riccardo Spagni2-1/+3
d7ff707b tx_pool: revert #4592 and move bin2hex conversion to on_get_transaction_pool (stoffu)
2018-10-20Merge pull request #4632Riccardo Spagni1-0/+35
1e8a9d7d ANSI colors in Windows 10 (v0.13) (iDunk5400)
2018-10-20Merge pull request #4630Riccardo Spagni3-0/+25
e4ce26c7 spawn: close all file descriptors before execve (moneromooo-monero)
2018-10-20Merge pull request #4627Riccardo Spagni1-1/+1
bd482802 util: close keys file lock on exec (moneromooo-monero)
2018-10-20console_handler: add a global log when exiting via EOFmoneromooo-monero1-1/+4
It's a common confusion point for users which run monerod without stdin and with --detach
2018-10-19blockchain: move two new verification errors to the verify categorymoneromooo-monero1-2/+2
Lest we get people get scared again
2018-10-19rpc: fix output distribution caching ignoring chain changesmoneromooo-monero1-6/+8
0 is placeholder for whole chain, so we should compare chain height changes rather than chain-height-or-zero. Even this isn't totally foolproof if a blocks are popped and the same number added again, but it is much better as it prevents the data from slowly going out of sync.
2018-10-18Rename "blackball" for claritymoneromooo-monero7-41/+41
Apparently some people seem to think it's a censorship list...
2018-10-18device: fixed Ledger Nano S device selectionxiphon2-6/+6
2018-10-18tx_pool: revert #4592 and move bin2hex conversion to on_get_transaction_poolstoffu2-1/+3
2018-10-17core: don't verify range proofs multiple timesmoneromooo-monero1-1/+6
2018-10-17spawn: close all file descriptors before execvemoneromooo-monero3-0/+25
No need to give whatever we're calling access to what we use
2018-10-16ANSI colors in Windows 10 (v0.13)iDunk54001-0/+35
2018-10-16util: close keys file lock on execmoneromooo-monero1-1/+1
2018-10-16Merge pull request #4603Riccardo Spagni1-5/+10
8e7baeb3 daemon: fix reading past stack on exit (moneromooo-monero)
2018-10-16Merge pull request #4624Riccardo Spagni1-2/+1
7ae3ebc7 wallet_rpc_server: fix change_wallet_password RPC (moneromooo-monero)
2018-10-16wallet_rpc_server: fix change_wallet_password RPCmoneromooo-monero1-2/+1
2018-10-16Merge pull request #4622Riccardo Spagni1-1/+1
32ba6f3a wallet2_api: fix generating new wallet in the GUI (moneromooo-monero)
2018-10-16wallet2_api: fix generating new wallet in the GUImoneromooo-monero1-1/+1
It was creating a new wallet without a password first (this should be fixed), then not changing the password correctly
2018-10-15daemon: fix reading past stack on exitmoneromooo-monero1-5/+10
2018-10-15Merge pull request #4598v0.13.0.3Riccardo Spagni2-3/+3
dae5fcaa update the version in readme (Riccardo Spagni) 5881bec7 bump version to 0.13.0.3 (Riccardo Spagni)
2018-10-15update the version in readmeRiccardo Spagni1-2/+2
2018-10-15bump version to 0.13.0.3Riccardo Spagni1-1/+1
2018-10-15Merge pull request #4596Riccardo Spagni1-1/+1
e3e1f836 tx_pool: store hex string instead of raw binary to tx_blob of get_transaction_pool RPC (stoffu)
2018-10-15Merge pull request #4584Riccardo Spagni1-0/+1
26e0cecb Dockerfile: init and update submodules (Tyler Baker)
2018-10-15Merge pull request #4590Riccardo Spagni3-6/+6
82037f23 build: use ARCH 'native' by default, allow to configure and override it (xiphon)
2018-10-15Merge pull request #4574Riccardo Spagni1-0/+1
a04d68f6 SOFTWARE is the default wallet device (m2049r)
2018-10-15Merge pull request #4569Riccardo Spagni1-1/+1
e25d21a7 simplewallet: mark default-ring-size setting as obsolete (moneromooo-monero)
2018-10-15Merge pull request #4579Riccardo Spagni1-3/+3
d7f3805d Revert "p2p: connect via the bound ip, if any" (moneromooo-monero)
2018-10-15Merge pull request #4570Riccardo Spagni1-1/+8
3b04e2e3 daemon: do not run complex code in a signal handler (moneromooo-monero)
2018-10-15Merge pull request #4568Riccardo Spagni1-1/+1
2509717b simplewallet: fix view key parsing in --generate-from-view-key (moneromooo-monero)
2018-10-15Merge pull request #4587Riccardo Spagni1-2/+6
067e232b password: fix secure input with echo on windows (moneromooo-monero)
2018-10-15Merge pull request #4588Riccardo Spagni1-0/+7
b215ea9f password: fix backspace outputting ^? on linux on echoing secure input (moneromooo-monero)
2018-10-15tx_pool: store hex string instead of raw binary to tx_blob of ↵stoffu1-1/+1
get_transaction_pool RPC Inspired by https://github.com/masari-project/masari/issues/93
2018-10-14build: use ARCH 'native' by default, allow to configure and override itxiphon3-6/+6
2018-10-14Dockerfile: init and update submodulesTyler Baker1-0/+1
The Docker image is failing to build, as the submodules are not being explicitly initialized and updated. Fixes: https://github.com/monero-project/monero/issues/4582 Signed-off-by: Tyler Baker <tyler@foundries.io>
2018-10-14password: fix backspace outputting ^? on linux on echoing secure inputmoneromooo-monero1-0/+7
2018-10-14password: fix secure input with echo on windowsmoneromooo-monero1-2/+6
Thanks to iDunk for the testing back and forth
2018-10-13Revert "p2p: connect via the bound ip, if any"moneromooo-monero1-3/+3
This reverts commit 909398efc79cb1fa92e330e9a50a316ca5858953. It looks like it's causing trouble with tor on some setups
2018-10-12SOFTWARE is the default wallet devicem2049r1-0/+1
2018-10-12daemon: do not run complex code in a signal handlermoneromooo-monero1-1/+8
instead, delegate the work to a one off thread and notify it from the signal handler
2018-10-12simplewallet: mark default-ring-size setting as obsoletemoneromooo-monero1-1/+1
2018-10-12simplewallet: fix view key parsing in --generate-from-view-keymoneromooo-monero1-1/+1
2018-10-09Merge pull request #4544v0.13.0.2Riccardo Spagni1-1/+1
e0f4606a remove -release from the version string (Riccardo Spagni) d7d6d238 update version for release (Riccardo Spagni)
2018-10-09remove -release from the version stringRiccardo Spagni1-1/+1
2018-10-09update version for releaseRiccardo Spagni1-1/+1
2018-10-09Merge pull request #4540Riccardo Spagni1-4/+1
8833aec0 wallet2: fix cold signing using non padded bulletproofs (moneromooo-monero)
2018-10-09Merge pull request #4517Riccardo Spagni4-5/+154
02c2b43a Utils: Add Dockerfile for android 64-bit build (Gregory Lemercier)
2018-10-09Merge pull request #4535Riccardo Spagni1-1/+1
c716a331 device: increase ledger timeout to 2 minutes (selsta)
2018-10-09Merge pull request #4538Riccardo Spagni1-6/+6
bd7b800f device_io_hid: fix DEFAULT_* type (too short) and init time (moneromooo-monero)
2018-10-09Merge pull request #4532Riccardo Spagni1-9/+16
8f22e808 device: destroy device objects on exit (moneromooo-monero)
2018-10-08Merge pull request #4530Riccardo Spagni1-1/+1
77471e23 blockchain_blackball: fix stray ! (moneromooo-monero)
2018-10-08Merge pull request #4529Riccardo Spagni1-1/+1
c95a1408 CMakeLists.txt: Fix typo (erciccione)
2018-10-08Merge pull request #4527Riccardo Spagni2-11/+1
c5a97315 Remove last traces of libpcsc-lite (moneromooo-monero)
2018-10-08Merge pull request #4519Riccardo Spagni1-0/+1
17701864 Depends: build hidapi with -fPIC (iDunk5400)
2018-10-08Revert "Merge pull request #4472"Riccardo Spagni17-113/+185
This reverts commit b26ab0b5803af4ffe23de11a45e43877301a4902.
2018-10-08Merge pull request #4514Riccardo Spagni1-15/+18
85e58cb2 blockchain_blackball: fix stats double counting (moneromooo-monero)
2018-10-07Merge pull request #4036Riccardo Spagni18-260/+847
9acf42d3 Multisig M/N functionality core tests added (naughtyfox) 9f3963e8 Arbitrary M/N multisig schemes: * support in wallet2 * support in monero-wallet-cli * support in monero-wallet-rpc * support in wallet api * support in monero-gen-trusted-multisig * unit tests for multisig wallets creation (naughtyfox)
2018-10-07Merge pull request #4510Riccardo Spagni8-59/+16
21a624af Consolidate HID depends makefiles into single recipe (TheCharlatan)
2018-10-07Merge pull request #4511Riccardo Spagni1-562/+562
f9485a36 tests: update crypto tests data file after PRNG changes (moneromooo-monero)
2018-10-07Merge pull request #4509Riccardo Spagni1-2/+2
0656050f README: update MSYS2 dependencies for Ledger (Lafudoci)
2018-10-07Merge pull request #4508Riccardo Spagni1-1374/+2384
3d722db4 wallet-cli: Update French translation (Guillaume LE VAILLANT)
2018-10-07Merge pull request #4506Riccardo Spagni1-0/+14
cbdd6b91 Linux: Fix building of static binaries with hw device support (iDunk5400)
2018-10-07Merge pull request #4505Riccardo Spagni4-1532/+2533
977df631 Fix some calls to the translation function (Guillaume LE VAILLANT)
2018-10-07Merge pull request #4501Riccardo Spagni1-0/+19
fb3593c2 Add check if submodules need to be updated (TheCharlatan)
2018-10-06Merge pull request #4472Riccardo Spagni17-185/+113
02d3ef7b blocks: use auto-generated .c files instead of 'LD -r -b binary' (xiphon)
2018-10-06Merge pull request #4495Riccardo Spagni1-3/+3
34a85e0c wallet2: disable height based segregation (moneromooo-monero)
2018-10-06Merge pull request #4499Riccardo Spagni1-7/+14
c5928bde wallet2_api: fix build with C++14 (moneromooo-monero)
2018-10-06Merge pull request #4390Riccardo Spagni4-58/+57
a0613532 secure_pwd_reader: Add proper Unicode handling [Ryo contribution] (fireice-uk) 579383c2 simplewallet: Add Unicode input_line [Ryo backport] (fireice-uk)
2018-10-06Merge pull request #4492Riccardo Spagni1-0/+4
7f2ad1a7 functional_tests: fix linking on Windows (iDunk5400)
2018-10-06Merge pull request #4487Riccardo Spagni1-2/+2
7c790f11 Fix rtxn usage in BlockchainLMDB::get_estimated_batch_size (Howard Chu)
2018-10-02Merge pull request #4485v0.13.0.2-RC2Riccardo Spagni1-5/+15
5ec929fb daemon: do not display uptime when not known (moneromooo-monero)
2018-10-02Merge pull request #4490Riccardo Spagni1-1/+1
bccd88dd wallet2: clear found out for every tx key (doy-lee)
2018-10-02Merge pull request #4484Riccardo Spagni2-9/+17
2c74b1a1 wallet_rpc_server: include all transfer records for a txid (moneromooo-monero)
2018-10-02Merge pull request #4482Riccardo Spagni6-7/+20
25e5890d wallet: fix --generate-from-json using wrong password (moneromooo-monero)
2018-10-02Merge pull request #4479Riccardo Spagni4-11/+65
d5541e44 common: Windows 'spawn' support for tx and block notifications (xiphon)
2018-10-02Merge pull request #4476Riccardo Spagni1-1/+1
fa9e54b6 build: fix gcc false positive 'stringop-overflow' warning (xiphon)
2018-10-02Merge pull request #4475Riccardo Spagni3-2/+28
6da36ea0 wallet2_api: blackball/unblackball now take two parameters (moneromooo-monero)
2018-10-02Merge pull request #4471Riccardo Spagni1-0/+0
31559e6a Update unbound submodule to 7f23967 (iDunk5400)
2018-10-02Merge pull request #4470Riccardo Spagni5-3/+19
2fbf38ee Fix 32bit depends builds (TheCharlatan) 17142ec9 malloc scratchpad for all supported android archs (m2049r) 6a781408 Make depends use self built clang for darwin (TheCharlatan) 69da14e1 fixes make debug compilation on OSX (Dusan Klinec) fe125647 Fixup RENAME_DB() macro (Howard Chu) b2972927 osx compilation fix: missing boost libs added (Dusan Klinec) 174f31bf simplewallet: don't complain about payment id on pool mined blocks (moneromooo-monero) 89288863 README: mention ASAN usage alongside valgrind (moneromooo-monero) 83debef9 wallet_rpc_server: remove verbose field in incoming_transfers query (moneromooo-monero) a69271fa Fixed a typo (Piotr Kąkol) 92d1da28 unit_tests: fix build with GCC 5.4.0 on ubuntu (moneromooo-monero) a21da905 Wallet: use unique_ptr for WalletImpl members (oneiric) 7a056f44 WalletAPI: multisigSignData bug fixed (naughtyfox) 43a06350 ringdb: use cursors to be a bit faster (moneromooo-monero) 7964d4f8 wallet2: handle corner case in picking fake outputs (moneromooo-monero) 6f5360b3 bump version to 0.13.0.1 (Riccardo Spagni) cf470bf3 switch from master to rc (Riccardo Spagni)
2018-10-02Merge pull request #4467Riccardo Spagni1-2/+2
fa942ef6 daemon: silence daemon update warnings on testnet (iDunk5400)
2018-10-02Merge pull request #4464Riccardo Spagni1-1/+1
bef1750f unit_tests: fix longstanding DNS related unit test (moneromooo-monero)
2018-10-02Merge pull request #4463Riccardo Spagni1-3/+4
8110bea3 dns_utils: refresh list of usable DNSSEC servers (moneromooo-monero)
2018-09-29Merge pull request #4333Riccardo Spagni10-0/+300
73403004 add --block-notify to monerod and --tx-notify to monero-wallet-{cli,rpc} (moneromooo-monero)
2018-09-29Merge pull request #4461Riccardo Spagni1-1/+5
7dd11711 wallet2: fix transfers between subaddresses hitting the sanity check (moneromooo-monero)
2018-09-29Merge pull request #4459Riccardo Spagni16-56/+101
bcf3f6af fuzz_tests: catch unhandled exceptions (moneromooo-monero) 3ebd05d4 miner: restore stream flags after changing them (moneromooo-monero) a093092e levin_protocol_handler_async: do not propagate exception through dtor (moneromooo-monero) 1eebb82b net_helper: do not propagate exceptions through dtor (moneromooo-monero) fb6a3630 miner: do not propagate exceptions through dtor (moneromooo-monero) 2e2139ff epee: do not propagate exception through dtor (moneromooo-monero) 0749a8bd db_lmdb: do not propagate exceptions in dtor (moneromooo-monero) 1b0afeeb wallet_rpc_server: exit cleanly on unhandled exceptions (moneromooo-monero) 418a9936 unit_tests: catch unhandled exceptions (moneromooo-monero) ea7f9543 threadpool: do not propagate exceptions through the dtor (moneromooo-monero) 6e855422 gen_multisig: nice exit on unhandled exception (moneromooo-monero) 53df2deb db_lmdb: catch error in mdb_stat calls during migration (moneromooo-monero) e67016dd blockchain_blackball: catch failure to commit db transaction (moneromooo-monero) 661439f4 mlog: don't remove old logs if we failed to rename the current file (moneromooo-monero) 5fdcda50 easylogging++: test for NULL before dereference (moneromooo-monero) 7ece1550 performance_test: fix bad last argument calling add_arg (moneromooo-monero) a085da32 unit_tests: add check for page size > 0 before dividing (moneromooo-monero) d8b1ec8b unit_tests: use std::shared_ptr to shut coverity up about leaks (moneromooo-monero) 02563bf4 simplewallet: top level exception catcher to print nicer messages (moneromooo-monero) c57a65b2 blockchain_blackball: fix shift range for 32 bit archs (moneromooo-monero)
2018-09-29Merge pull request #4458Riccardo Spagni2-3/+3
921b0fb1 use default create_address_file argument (m2049r)
2018-09-29Merge pull request #4457Riccardo Spagni1-32/+36
85318e78 build: set ARCH_FLAG before compiler/linker flag checks (xiphon)
2018-09-29Merge pull request #4456Riccardo Spagni1-2/+9
06d05c21 device: set device name correctly if key_on_device is set (Dusan Klinec)
2018-09-29Merge pull request #4449Riccardo Spagni1-2/+41
17142ec9 malloc scratchpad for all supported android archs (m2049r)
2018-09-29Merge pull request #4448Riccardo Spagni4-7/+12
6a781408 Make depends use self built clang for darwin (TheCharlatan)
2018-09-29Merge pull request #4446Riccardo Spagni1-1/+1
69da14e1 fixes make debug compilation on OSX (Dusan Klinec)
2018-09-29Merge pull request #4445Riccardo Spagni1-2/+12
fe125647 Fixup RENAME_DB() macro (Howard Chu)
2018-09-29Merge pull request #4443Riccardo Spagni1-0/+2
b2972927 osx compilation fix: missing boost libs added (Dusan Klinec)
2018-09-29Merge pull request #4439Riccardo Spagni1-1/+2
174f31bf simplewallet: don't complain about payment id on pool mined blocks (moneromooo-monero)
2018-09-29Merge pull request #4434Riccardo Spagni1-2/+12
89288863 README: mention ASAN usage alongside valgrind (moneromooo-monero)
2018-09-29Merge pull request #4427Riccardo Spagni2-3/+1
83debef9 wallet_rpc_server: remove verbose field in incoming_transfers query (moneromooo-monero)
2018-09-29Merge pull request #4425Riccardo Spagni1-1/+1
a69271fa Fixed a typo (Piotr Kąkol)
2018-09-29Merge pull request #4424Riccardo Spagni2-6/+6
92d1da28 unit_tests: fix build with GCC 5.4.0 on ubuntu (moneromooo-monero)
2018-09-29Merge pull request #4417Riccardo Spagni2-22/+16
a21da905 Wallet: use unique_ptr for WalletImpl members (oneiric)
2018-09-29Merge pull request #4409Riccardo Spagni1-1/+5
7a056f44 WalletAPI: multisigSignData bug fixed (naughtyfox)
2018-09-29Merge pull request #4407Riccardo Spagni2-7/+32
43a06350 ringdb: use cursors to be a bit faster (moneromooo-monero)
2018-09-29Merge pull request #4406Riccardo Spagni1-3/+27
7964d4f8 wallet2: handle corner case in picking fake outputs (moneromooo-monero)
2018-09-29add --block-notify to monerod and --tx-notify to monero-wallet-{cli,rpc}moneromooo-monero10-0/+300
Those take a command line of the form "A [B]", with A being the name (and optional path, if not in the caller's CWD, but fully qualified path is recommended, avoids possible security issues) to a program, and optional arguments. Any occurence of the two character string "%s" will be replaced by the hash of the block or transaction which triggered the notification. Tokenization is barebones. If you want things like pipes, calls to paths with spaces, etc, then use a script (though exec time will suffer). block-notify is called when a new block is added onto the chain. tx-notify is called when a new transaction happens with the wallet as source and/or destination. It is the notification program's responsibility to determine what to do in those cases. Note that this is asynchronous, so it is very possible that: - the notification programs will be run out of order - several events happen before the notification for the first one A Windows port would be nice if someone wants to make one.
2018-09-28wallet_rpc_server: remove verbose field in incoming_transfers querymoneromooo-monero2-3/+1
The key image (which was only supplied if verbose was true) is readily available, not a secret key, and it was only modelled after the CLI command because it's a bit spammy for the CLI.
2018-09-28wallet2: fix transfers between subaddresses hitting the sanity checkmoneromooo-monero1-1/+5
Transfers between subaddresses are accounted for differently
2018-09-27fuzz_tests: catch unhandled exceptionsmoneromooo-monero1-0/+4
Coverity 175293, 175312, 175266
2018-09-27miner: restore stream flags after changing themmoneromooo-monero1-1/+2
Coverity 136462
2018-09-27levin_protocol_handler_async: do not propagate exception through dtormoneromooo-monero1-0/+6
Coverity 161856
2018-09-27net_helper: do not propagate exceptions through dtormoneromooo-monero1-1/+2
Coverity 161864
2018-09-27miner: do not propagate exceptions through dtormoneromooo-monero1-1/+2
Coverity 161862
2018-09-27epee: do not propagate exception through dtormoneromooo-monero1-1/+2
Coverity 161867
2018-09-27db_lmdb: do not propagate exceptions in dtormoneromooo-monero1-1/+4
Not much we can do here Coverity 161875
2018-09-27wallet_rpc_server: exit cleanly on unhandled exceptionsmoneromooo-monero1-0/+3
Coverity 161868
2018-09-27unit_tests: catch unhandled exceptionsmoneromooo-monero1-0/+4
Coverity 182560
2018-09-27threadpool: do not propagate exceptions through the dtormoneromooo-monero1-1/+2
This would call terminate. We ignore exceptions in pthread_join instead, as this is not a fatal problem here. Coverity 182568
2018-09-27gen_multisig: nice exit on unhandled exceptionmoneromooo-monero1-1/+3
Coverity 182569
2018-09-27db_lmdb: catch error in mdb_stat calls during migrationmoneromooo-monero1-4/+12
Coverity 188305
2018-09-27blockchain_blackball: catch failure to commit db transactionmoneromooo-monero1-2/+4
Coverity 188349
2018-09-27mlog: don't remove old logs if we failed to rename the current filemoneromooo-monero1-1/+6
Coverity 188348
2018-09-27easylogging++: test for NULL before dereferencemoneromooo-monero1-2/+2
2018-09-27use default create_address_file argumentm2049r2-3/+3
2018-09-27performance_test: fix bad last argument calling add_argmoneromooo-monero1-4/+4
Coverity 182572
2018-09-27build: set ARCH_FLAG before compiler/linker flag checksxiphon1-32/+36
2018-09-27unit_tests: add check for page size > 0 before dividingmoneromooo-monero1-0/+1
Coverity 188426
2018-09-27unit_tests: use std::shared_ptr to shut coverity up about leaksmoneromooo-monero1-34/+34
Coverity 188436, 188433, 188428, 188415, 188416, 188410, 188400, 188298, 188299, 188321, 188342, 188343, 188355, 188357, 188361, 188366, 188374
2018-09-27simplewallet: top level exception catcher to print nicer messagesmoneromooo-monero1-1/+3
Coverity 188408
2018-09-27blockchain_blackball: fix shift range for 32 bit archsmoneromooo-monero1-1/+1
Coverity 188406
2018-09-27device: set device name correctly if key_on_device is setDusan Klinec1-2/+9
2018-09-26osx compilation fix: missing boost libs addedDusan Klinec1-0/+2
2018-09-26malloc scratchpad for all supported android archsm2049r1-2/+41
2018-09-25Make depends use self built clang for darwinTheCharlatan4-7/+12
The configure script in hidapi and libsodium tried to find clang in /usr/bin, even though the correct prefix was passed in. This sets the correct CC flag. This was previously undetected, because clang and the sdk where installed in the global environment. This also fixes a subsequent error, where IOKIT and CoreFoundation are not found, again for the reason stated above.
2018-09-25fixes make debug compilation on OSXDusan Klinec1-1/+1
2018-09-25Fixup RENAME_DB() macroHoward Chu1-2/+12
Make sure target DB's record is on a writable page
2018-09-25Merge pull request #4441v0.13.0.1-RC1Riccardo Spagni1-1/+1
6f5360b3 bump version to 0.13.0.1 (Riccardo Spagni)
2018-09-25bump version to 0.13.0.1Riccardo Spagni1-1/+1
2018-09-25Merge pull request #4440Riccardo Spagni1-1/+1
cf470bf3 switch from master to rc (Riccardo Spagni)
2018-09-25switch from master to rcRiccardo Spagni1-1/+1
2018-09-25simplewallet: don't complain about payment id on pool mined blocksmoneromooo-monero1-1/+2
Those use the extra nonce without a payment id
2018-09-25Merge pull request #4423v0.13.0.0-RC1Riccardo Spagni5-8/+9
357441a2 add checkpoints for testnet and mainnet (Riccardo Spagni) d9f666d7 update checkpoints.dat (Riccardo Spagni) 6b1b4e83 update version to 13.0 (Riccardo Spagni) 6f153533 update readme with v13.0 (Riccardo Spagni)
2018-09-25Merge pull request #4438Riccardo Spagni3-13/+49
e350cc5a wallet2: fix duplicate output making it to the RPC (moneromooo-monero) bf9a0f4c epee: fix stack overflow on crafted input (moneromooo-monero) 45683ee0 epee: fix invalid memory write reading an array entry (moneromooo-monero)
2018-09-25wallet2: fix duplicate output making it to the RPCmoneromooo-monero1-8/+33
2018-09-25epee: fix stack overflow on crafted inputmoneromooo-monero1-5/+8
2018-09-25epee: fix invalid memory write reading an array entrymoneromooo-monero1-0/+8
Reported by Lilith Wyatt at Talos. Since this is not needed in normal operation, I just let this error out.
2018-09-25Merge pull request #4435Riccardo Spagni1-0/+1
c39ad0cd tx_pool: fix tx removal at startup keeping references (moneromooo-monero)
2018-09-25Merge pull request #4431Riccardo Spagni8-32/+138
5c234cbd Add hidapi to depends (TheCharlatan)
2018-09-25Add hidapi to dependsTheCharlatan8-32/+138
Clang needs to get its cctools path passed directly for the hid build to succeed. Make gperf a permanent external dependency. Remove pcsc from depends.
2018-09-25Merge pull request #4412Riccardo Spagni2-2/+2
4d0a8db0 device: fix warnings about overridden functions (moneromooo-monero)
2018-09-25Merge pull request #4422Riccardo Spagni3-3/+3
6e270fbd wallet2_api: fix for latest code changes (moneromooo-monero)
2018-09-25Merge pull request #4430Riccardo Spagni1-0/+2
50981c40 blockchain: add stagenet v8 and v9, two weeks before mainnet (moneromooo-monero)
2018-09-25Merge pull request #4433Riccardo Spagni2-2/+2
b35beaa8 wallet_rpc_server: include account index in incoming_transfers RPC (moneromooo-monero)
2018-09-25Merge pull request #4420Riccardo Spagni7-13/+102
0f4f873b Fix Darwin Sodium build (TheCharlatan) bf1e1d97 A Travis to monero (TheCharlatan)
2018-09-25Merge pull request #4419Riccardo Spagni2-1/+3
936e22a9 Dockerfile: use single build dir (MoroccanMalinois)
2018-09-25Merge pull request #4414Riccardo Spagni1-0/+1
83907f88 wallet_rpc_server: fix --run-as-service on Windows (moneromooo-monero)
2018-09-25tx_pool: fix tx removal at startup keeping referencesmoneromooo-monero1-0/+1
2018-09-25README: mention ASAN usage alongside valgrindmoneromooo-monero1-2/+12
2018-09-25add checkpoints for testnet and mainnetRiccardo Spagni1-1/+2
2018-09-25Dockerfile: use single build dirMoroccanMalinois2-1/+3
2018-09-24blockchain: add stagenet v8 and v9, two weeks before mainnetmoneromooo-monero1-0/+2
2018-09-24Merge pull request #4203Riccardo Spagni13-253/+645
bb6e3bbc Replace USB-CCID (smartcard) by USB-HID (cslashm)
2018-09-24Replace USB-CCID (smartcard) by USB-HIDcslashm13-253/+645
Remove PCSC dependencies which is a bit hard (not user friendly) to install on linux and Mac Split Ledger logic and device IO
2018-09-24wallet_rpc_server: include account index in incoming_transfers RPCmoneromooo-monero2-2/+2
2018-09-24Merge pull request #4429Riccardo Spagni1-15/+17
1dd5c73f bulletproofs: multiply points by 8 first thing in verification (moneromooo-monero)
2018-09-24bulletproofs: multiply points by 8 first thing in verificationmoneromooo-monero1-15/+17
instead of merging that with other scalar multiplications where possible for speed, since this is not actually safe
2018-09-23Fixed a typoPiotr Kąkol1-1/+1
2018-09-23unit_tests: fix build with GCC 5.4.0 on ubuntumoneromooo-monero2-6/+6
2018-09-23update checkpoints.datRiccardo Spagni2-1/+1