Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-07-23 | Changed time_t to uint64_t for serialization | Thomas Winget | 1 | -3/+3 | |
time_t is implementation-, architecture-, and apparently compiler-dependent. As an example, on my machine if I build a 64-bit binary, sizeof(time_t) is 8, but for a 32-bit binary it's 4. uint64_t is therefore much more consistent for serialization, given that RPC calls are potentially made between different machines. | |||||
2014-07-22 | Missed serializing a get_connections RPC response parameter | Thomas Winget | 1 | -0/+1 | |
2014-07-22 | Add get_info command to daemon json rpc | Zachary Michaels | 2 | -0/+26 | |
2014-07-22 | Add get_bulk_payments rpc call | Zachary Michaels | 5 | -5/+81 | |
2014-07-18 | Added get_connections RPC call to daemon | Thomas Winget | 6 | -0/+116 | |
2014-07-17 | Merge pull request #63 from mikezackles/bytecoin_for_merge | mikezackles | 15 | -60/+52 | |
Misc fixes from bytecoin | |||||
2014-07-01 | Fix thread count argument handling in simplewallet | Zachary Michaels | 1 | -2/+2 | |
2014-07-01 | Match empty RPC request with other requests | Zachary Michaels | 1 | -1/+5 | |
2014-07-01 | Switch list to vector for RPC serialization | Zachary Michaels | 1 | -2/+2 | |
2014-07-01 | Remove unused function | Zachary Michaels | 2 | -19/+0 | |
2014-07-01 | Fix assert bug in base58 encode | Zachary Michaels | 1 | -1/+1 | |
The previous implementation was almost certainly a typo. full_block_size is the maximum index in the encoded_block_sizes array, and size is used as an index in this array. So now 1 <= size <= full_block_size == 8 instead of 1 <= size <= sizeof(full_block_size) == size_of(size_t) == ? (maybe 4 on 32-bit systems!) | |||||
2014-07-01 | Explicit namespaces | Zachary Michaels | 1 | -11/+8 | |
2014-07-01 | Remove redeclaration | Zachary Michaels | 1 | -1/+0 | |
2014-07-01 | C++ style cast | Zachary Michaels | 1 | -1/+1 | |
2014-07-01 | Comment unused functions in cryptonote_core | Zachary Michaels | 2 | -15/+14 | |
2014-07-01 | Improved (fixed?) serialization for vec<uint32_t> | Zachary Michaels | 1 | -0/+7 | |
2014-07-01 | Add missing pragma | Zachary Michaels | 1 | -0/+2 | |
2014-07-01 | Add missing pragma | Zachary Michaels | 1 | -0/+2 | |
2014-07-01 | Add missing pragma | Zachary Michaels | 1 | -0/+2 | |
2014-07-01 | Allow priority peers when there are exclusive peers | Zachary Michaels | 1 | -1/+1 | |
Per my reading this change makes sense since a subset of the exclusive peers could be priority peers. Priority peers that are not exclusive will not get loaded, and priority peers that *are* exclusive will get special treatment. Prior to this change it looks like priority peers were silently ignored when exclusive peers were provided. | |||||
2014-07-01 | Explicit error constructors | Zachary Michaels | 1 | -5/+5 | |
2014-07-01 | Remove unused array in cn_slow_hash | Zachary Michaels | 1 | -1/+0 | |
2014-06-30 | wallet RPC converted to use new transaction semantics | Thomas Winget | 7 | -184/+305 | |
wallet RPC now uses wallet2::create_transactions and wallet2::commit_tx instead of wallet2::transfer. This made it possible to add the RPC call /transfer_split, which will split transactions automatically if they are too large. The old call to /transfer will return an error stating to use /transfer_split if multiple transactions are needed to fulfill the request. | |||||
2014-06-30 | removed erroneous printing of newlines | Thomas Winget | 1 | -1/+0 | |
2014-06-30 | missed removing a debug print | Thomas Winget | 1 | -2/+0 | |
2014-06-30 | removed some debugging code (really stupid printf-style debuggng.. | Thomas Winget | 1 | -11/+2 | |
2014-06-30 | Transaction splitting *seems* to be working!!! | tom | 2 | -6/+24 | |
2014-06-30 | Added confirmation prompt if transactions are to be split | Thomas Winget | 1 | -0/+16 | |
2014-06-30 | added back successful tx message. oops. | Thomas Winget | 1 | -1/+3 | |
2014-06-30 | up tx splits limit 5 -> 30 | Thomas Winget | 1 | -1/+1 | |
2014-06-30 | final changes to get transaction splitting building. needs testing. | Thomas Winget | 5 | -42/+136 | |
2014-06-30 | working on dividing functions in prep for tx splitting | tom | 2 | -9/+84 | |
2014-06-30 | Added comments to wallet functions | Thomas Winget | 2 | -0/+13 | |
2014-06-30 | Revert "Do not fall over when refreshing balance fails" | Thomas Winget | 1 | -2/+1 | |
2014-06-29 | Do not fall over when refreshing balance fails | Matthew Little | 1 | -1/+2 | |
2014-06-26 | set max block size for gbt | mydesktop | 2 | -0/+9 | |
2014-06-24 | fix function typo | monero-project | 1 | -1/+1 | |
2014-06-24 | Fix copy/paste bug, thx Boolberry | monero-project | 1 | -3/+3 | |
2014-06-19 | Update slow-hash.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -0/+5 | |
1. Fix for Mac OSX compilation errors. | |||||
2014-06-16 | Update slow-hash.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -1/+8 | |
1. Added multiplication support in 32-bit mode | |||||
2014-06-16 | Update miner.cpp | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -1/+4 | |
1. Added support for scratchpad memory allocation. | |||||
2014-06-16 | Update slow-hash.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -110/+288 | |
1. Added huge pages support and optimized scratchpad twiddling. (credits to dga). 2. Added aes-ni key expansion support. 3. Minor speedup to scratchpad initialization/finalization. | |||||
2014-06-15 | Merge pull request #33 from mikezackles/arch_linux_build_fixes | monero-project | 1 | -4/+4 | |
Arch Linux build fixes | |||||
2014-06-15 | proper tx_pool handling from CryptoZoidberg / BBR | fluffypony | 4 | -1/+36 | |
2014-06-14 | added checkpoint @ 80000 | monero-project | 1 | -0/+1 | |
2014-06-12 | changed wallet mnemonic to use cout so it doesn't print to log | Thomas Winget | 1 | -1/+2 | |
2014-06-12 | change hash for keygen from blake to keccak | tom | 1 | -2/+2 | |
2014-06-12 | changed text a bit more | tom | 1 | -10/+11 | |
2014-06-12 | changed some print messages | tom | 1 | -2/+2 | |
2014-06-12 | allow two-random-numbers wallet generation (but not as default) | Thomas Winget | 6 | -42/+52 | |
2014-06-12 | reworked command line args for simplewallet. | Thomas Winget | 2 | -19/+30 | |
--generate-new-wallet and --wallet-file are now properly mutually-exclusive. | |||||
2014-06-12 | DRY cin input_line (and test replacement of non-DRY usage) | Thomas Winget | 3 | -6/+19 | |
2014-06-12 | stupid signed arithmetic. | Thomas Winget | 1 | -6/+3 | |
2014-06-12 | more pointer-based derp | Thomas Winget | 3 | -8/+23 | |
2014-06-12 | fixed some pointer- and loop-based derps | Thomas Winget | 3 | -1/+6 | |
2014-06-12 | builds, but doesn't link. other than that, electrum-style recovery ↵ | Thomas Winget | 9 | -19/+56 | |
implemented (but not tested\!) | |||||
2014-06-12 | missing '.at' on two map calls. built on some machines, very strange... | Thomas Winget | 1 | -2/+2 | |
2014-06-12 | revert 'dirty hack' change to crypto.h. need a better way for sure. | Thomas Winget | 1 | -4/+1 | |
2014-06-12 | compile issues, resolve later. commiting because switching machines | tom | 3 | -2/+83 | |
2014-06-12 | defaulted new parameters in modified functions | tom | 2 | -2/+2 | |
2014-06-12 | most functions prototyped/modified for wallet recovery | Thomas Winget | 10 | -9/+3371 | |
2014-06-11 | new error code for rpc | mydesktop | 1 | -2/+1 | |
2014-06-11 | Fix for orphan fix (check blocksize) | mydesktop | 3 | -0/+22 | |
2014-06-11 | Link to pthreads on non-apple unix | Zachary Michaels | 1 | -4/+4 | |
2014-06-11 | Correcting high orphan rate of blocks at pool | monero-project | 1 | -3/+12 | |
2014-06-10 | added new seed nodes | fluffypony | 1 | -0/+9 | |
2014-06-05 | Merge pull request #24 from Neozaru/master | monero-project | 5 | -1/+22 | |
'getinfo' daemon HTTP-RPC returns 'target_height' for progress estimation | |||||
2014-06-04 | Added static_cast to hshd.current_height | Neozaru | 1 | -1/+1 | |
2014-06-04 | 'getinfo' daemon HTTP-RPC returns 'target_height' for progress estimations | Neozaru | 5 | -1/+22 | |
2014-06-02 | fixed conflict | paybee | 11 | -43/+177 | |
2014-06-02 | Added incoming_transfers RPC API method | paybee | 2 | -15/+1 | |
2014-06-02 | Merge pull request #21 from Neozaru/master | monero-project | 5 | -16/+48 | |
Added 'payment_id' optional argument to 'transfer' wallet RPC method | |||||
2014-06-02 | Merge pull request #20 from artifexd/wallet_refresh | monero-project | 2 | -18/+23 | |
Enable wallet refresh before blockchain is saved or completely sync'd. | |||||
2014-06-02 | Added 'payment_id' optional argument to 'transfer' wallet RPC method | Neozaru | 5 | -16/+48 | |
2014-06-01 | Enable wallet refresh before blockchain is saved or completely sync'd. | artifexd | 2 | -18/+23 | |
2014-06-01 | Merge bitmonero@monero-project | Neozaru | 28 | -217/+442 | |
2014-05-29 | Merge remote-tracking branch 'upstream/master' | paybee | 28 | -205/+432 | |
2014-05-28 | simplewallet returns 0 when no error | Neozaru | 1 | -1/+1 | |
2014-05-28 | Added '--exit-after-cmd' option in simplewallet | Neozaru | 1 | -1/+9 | |
2014-05-28 | Fixed return status for '--help'. Fixed wallet name (use macro instead of ↵ | Neozaru | 1 | -2/+2 | |
'bytecoin wallet' | |||||
2014-05-28 | typo in tx_pool.cpp | monero-project | 1 | -1/+1 | |
2014-05-27 | fix typing mismatch | mydesktop | 1 | -2/+9 | |
2014-05-27 | Added incoming_transfers RPC API method | paybee | 4 | -4/+108 | |
2014-05-26 | dynamic tx size scaling for tx mempool | mydesktop | 1 | -0/+11 | |
2014-05-26 | Merge remote-tracking branch 'origin/master' into 0.8.8update | mydesktop | 1 | -5/+11 | |
Latest PR merged into experimental branch. | |||||
2014-05-26 | maximum block size 130% of median | mydesktop | 1 | -3/+14 | |
2014-05-26 | simplewallet exits when COMMAND is given as a command-line argument | paybee | 1 | -5/+11 | |
2014-05-25 | temporary fix for block reward dos | mydesktop | 2 | -2/+29 | |
2014-05-25 | enable checkpointed block verification | mydesktop | 1 | -1/+1 | |
2014-05-25 | 'mining_status' Daemon RPC command | Neozaru | 5 | -6/+68 | |
2014-05-25 | 0.8.8update | mydesktop | 27 | -203/+374 | |
2014-05-25 | 'getaddress' wallet-rpc command | Neozaru | 3 | -0/+35 | |
2014-05-21 | Update version.h.in | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -1/+1 | |
1. Updated version to 0.8.8.2 | |||||
2014-05-21 | Update slow-hash.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -117/+223 | |
1. Added AES-NI support for modern processors. | |||||
2014-05-17 | Update version.h.in | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -2/+2 | |
1. Version to 0.8.8.1 | |||||
2014-05-17 | Create aesb.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -0/+177 | |
2014-05-17 | Update slow-hash.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -14/+18 | |
1. Various optimizations for faster hashing performance. | |||||
2014-05-17 | Update oaes_lib.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -24/+0 | |
1. Moved structs oaes_ctx and oaes_key into oeas_lib header. | |||||
2014-05-17 | Update oaes_lib.h | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -0/+26 | |
1. Moved structs oaes_ctx and oaes_key into oeas_lib header. | |||||
2014-05-17 | Update oaes_config.h | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -3/+3 | |
1. Disabled OAES_DEBUG flag | |||||
2014-05-16 | Added 'save_bc' command in daemon for saving blockchain remotely | Neozaru | 1 | -2/+0 | |
2014-05-16 | Added 'save_bc' command in daemon for saving blockchain remotely | Neozaru | 5 | -0/+54 | |
2014-05-14 | Merge pull request #10 from NoodleDoodleNoodleDoodleNoodleDoodleNoo/patch-8 | monero-project | 1 | -0/+12 | |
Update daemon_commands_handler.h | |||||
2014-05-14 | Merge pull request #9 from NoodleDoodleNoodleDoodleNoodleDoodleNoo/patch-7 | monero-project | 1 | -1/+52 | |
Update tx_extra.h | |||||
2014-05-13 | Update daemon_commands_handler.h | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -0/+12 | |
1. Added "diff" command to show current estimated difficulty and hash-rate. | |||||
2014-05-13 | Update tx_extra.h | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -1/+52 | |
1. Fixed bug where it's impossible to spend merge-mining blocks due to missing serialization support for "tx_etra_merge_mining_tag". | |||||
2014-05-13 | Update serialization.h | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -1/+6 | |
1. Added VARINT_FIELD_N(t,f) macro required for tx_extra_merge_mining_tag serialization. | |||||
2014-05-12 | 20s timeout for zone117x pool | monero-project | 1 | -1/+1 | |
2014-05-11 | Update simpleminer.cpp | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -2/+2 | |
1. Modified connection timeout from 1 second to 10 seconds 2. Modified behavior to retry instead of exiting when the miner fails to get a new job | |||||
2014-05-08 | disable checkpointing for security reasons | monero-project | 1 | -2/+6 | |
Further investigation of fast sync security is required | |||||
2014-05-07 | Update cryptonote_format_utils.cpp | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -2/+2 | |
Fixed problem with integer saturation when summing summary_amounts and out_amounts in a 32-bit platform. | |||||
2014-05-07 | added checkpoint @ 29556 | monero-project | 1 | -0/+1 | |
2014-05-07 | Update slow-hash.c | NoodleDoodleNoodleDoodleNoodleDoodleNoo | 1 | -6/+4 | |
Fixed scratchpad initialization/finalization for faster looping. | |||||
2014-05-03 | fix genesis block hash, checkpoint, days behind | mydesktop | 3 | -4/+4 | |
2014-05-03 | initial [broken] update | mydesktop | 24 | -180/+712 | |
2014-04-30 | Merge branch 'master' of github.com:monero-project/bitmonero | mydesktop | 1 | -1/+0 | |
2014-04-30 | mac osx building fixes | mydesktop | 6 | -8/+22 | |
2014-04-30 | Reverting wallet2.cpp to proper bugfix | monero-project | 1 | -5/+0 | |
2014-04-30 | further fixes for mac osx | mydesktop | 1 | -0/+11 | |
2014-04-30 | various fixes to allow mac osx compilation | mydesktop | 6 | -6/+9 | |
2014-04-30 | Warn user on attempting to remove build directory for make clean | mydesktop | 1 | -1/+1 | |
2014-04-30 | return for unhandleable tx_extra | monero-project | 1 | -0/+4 | |
2014-04-30 | Temporarily disable error relating to mangled tx_extra fields | monero-project | 1 | -1/+4 | |
2014-04-30 | voting stopped | thankful_for_today | 1 | -1/+1 | |
2014-04-30 | Merge branch 'master' of https://github.com/bitmonero-project/bitmonero | thankful_for_today | 2 | -3/+3 | |
voting commit merged | |||||
2014-04-30 | 2nd seed node added | thankful_for_today | 1 | -0/+1 | |
2014-04-25 | Changed block minor version | Henry Hartshorne | 2 | -3/+3 | |
2014-04-20 | mining bug fixed | thankful_for_today | 2 | -47/+14 | |
2014-04-18 | checkpoints removed | thankful_for_today | 2 | -12/+1 | |
2014-04-18 | Bitmonero release | thankful_for_today | 6 | -25/+16 | |
2014-04-09 | Port mapping with UPnP | Antonio Juarez | 7 | -14/+290 | |
2014-04-07 | Improvements in JSON RPC | Antonio Juarez | 10 | -77/+72 | |
2014-04-02 | json rpc for wallet and bugfix | Antonio Juarez | 23 | -712/+1950 | |
2014-03-20 | some fixes | Antonio Juarez | 29 | -388/+729 | |
2014-03-03 | moved all stuff to github | Antonio Juarez | 124 | -440/+21135 | |
2013-11-15 | crypto lib | amjuarez | 11 | -0/+4627 | |