Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-09-23 | change to allow (at least a bit) for multiple TXT records | Thomas Winget | 7 | -30/+57 | |
2014-09-23 | Simplewallet should now resolve urls to addresses | Thomas Winget | 1 | -2/+53 | |
Simplewallet should now do a DNS query on an address if it fails to convert the given string to a binary representation of an address (base58->binary). It will prompt the user, telling of what the "url" passed was, what monero address it translated to, and whether or not DNSSEC validation was a success, and ask for a confirmation that these are all acceptable. | |||||
2014-09-23 | Monero addres from DNS TXT record implemented, tests pass | Thomas Winget | 6 | -24/+243 | |
Still need to deal with DNSSEC and optional fields in the TXT record. | |||||
2014-09-23 | seed node DNS code updated to use DNSResolver | Thomas Winget | 1 | -41/+111 | |
Also implemented rudimentary IPv6 support, but commented it out because it's not widely supported by ISPs for now, and thus is not currently supported by Monero. | |||||
2014-09-23 | Use the loop iterator, previous version of me. | Thomas Winget | 1 | -2/+2 | |
2014-09-23 | ipv4 and ipv6 resolution working | Thomas Winget | 5 | -32/+224 | |
IPv4 and IPv6 name resolution working. Unit tests written (and passing). net_node.{h,inl} code modified to use DNS seeds. | |||||
2014-09-23 | Updated CMake files -- added libunbound linker flag | Thomas Winget | 4 | -11/+71 | |
CMake config file written, but was unable to test/get it working properly because of a bug in CMake with functions related to find_package. Simple "-lunbound" flag used in its stead for now. May not build on non-Linux systems, not sure yet. | |||||
2014-09-23 | Initial commit of DNS code | Thomas Winget | 2 | -0/+141 | |
2014-09-23 | added unbound dependencies to readme | Riccardo Spagni | 1 | -3/+3 | |
2014-09-23 | updated mingw build instructions | Riccardo Spagni | 1 | -1/+1 | |
2014-09-23 | updated mingw build instructions | Riccardo Spagni | 1 | -5/+29 | |
2014-09-23 | added oranjuice and tewinget's GPG keys | Riccardo Spagni | 2 | -0/+50 | |
2014-09-22 | moved msys2 toolchain, boost libs fix | Riccardo Spagni | 3 | -2/+6 | |
2014-09-22 | added mikezackles' missing boost function in CMakeLists | Riccardo Spagni | 1 | -0/+15 | |
2014-09-21 | fixed miniupnpc static building | Riccardo Spagni | 1 | -1/+1 | |
2014-09-15 | turns out we do need -static-libgcc etc. on Linux | Riccardo Spagni | 1 | -1/+1 | |
2014-09-15 | Give up on brace initializers in initializer lists (MSVC bug) | Zachary Michaels | 3 | -11/+11 | |
2014-09-15 | another fix for CMake empty vars | Riccardo Spagni | 1 | -3/+5 | |
2014-09-15 | Prevent CMake choking on empty vars | Riccardo Spagni | 1 | -0/+2 | |
2014-09-15 | More robust versioning in CMake, plus comments | Riccardo Spagni | 1 | -13/+62 | |
2014-09-15 | explicitly disable LTO for Clang | Riccardo Spagni | 1 | -1/+5 | |
2014-09-15 | Fix time_t serialization issue | Zachary Michaels | 3 | -5/+9 | |
On 32-bit MinGW-w64, time_t is int32_t. The existing code was serializing time_t directly and implicitly assuming that time_t is int64_t. This commit formalizes that assumption by serializing int64_t directly and casting to time_t where appropriate. Thanks go to greatwolf for reporting this issue. monero-project/bitmonero#88 | |||||
2014-09-15 | Use LTO by default | Zachary Michaels | 3 | -1/+6 | |
The mingw toolchains override this for now. | |||||
2014-09-15 | Move toolchain files | Zachary Michaels | 2 | -0/+0 | |
2014-09-15 | Fix march flag for 32-bit build | Zachary Michaels | 1 | -1/+1 | |
2014-09-15 | Use unwrapped binutils for msys2 | Zachary Michaels | 2 | -6/+6 | |
The default binutils wrappers are built without plugin support. This will streamline the build process until we decide to start supporting LTO. | |||||
2014-09-15 | Force CMake to link the runtime statically | Zachary Michaels | 1 | -0/+4 | |
2014-09-15 | msys2 32/64-bit toolchains | Zachary Michaels | 2 | -0/+36 | |
2014-09-15 | Another preprocessor fix (difficulty.cpp) | Zachary Michaels | 1 | -1/+1 | |
2014-09-15 | More preprocessor fixes for slow-hash | Zachary Michaels | 1 | -3/+3 | |
2014-09-15 | Correct includes for mingw in slow-hash | Zachary Michaels | 1 | -0/+8 | |
This needs testing | |||||
2014-09-15 | Change Windows include to windows | Zachary Michaels | 1 | -1/+1 | |
mingw is case sensitive | |||||
2014-09-15 | User setting to turn LTO on and off | Zachary Michaels | 1 | -9/+13 | |
This isn't currently working on mingw | |||||
2014-09-15 | Remove unnecessary else | Zachary Michaels | 1 | -2/+0 | |
2014-09-15 | Hack to add pthread to link libraries on mingw | Zachary Michaels | 1 | -2/+2 | |
This should link winpthreads. We really shouldn't be passing these this way, but that seems to be the existing solution, and it works for now. | |||||
2014-09-15 | Change to -static gcc flag | Zachary Michaels | 1 | -1/+1 | |
2014-09-15 | Set the boost thread api for mingw | Zachary Michaels | 1 | -0/+1 | |
2014-09-15 | Hack to allow toolchains to pass flags to mingw | Zachary Michaels | 1 | -1/+1 | |
2014-09-15 | Ignore another warning to make mingw happy | Zachary Michaels | 1 | -1/+1 | |
2014-09-15 | Remove unused CMake function | Zachary Michaels | 1 | -6/+0 | |
2014-09-15 | Default to static linking on both MSVC and MINGW | Zachary Michaels | 1 | -1/+6 | |
2014-09-15 | Merge pull request #141v0.8.8.4 | Riccardo Spagni | 1 | -1/+6 | |
b92a8b5 fix CMake for multiplatform versioning (Riccardo Spagni) | |||||
2014-09-15 | fix CMake for multiplatform versioning | Riccardo Spagni | 1 | -1/+6 | |
2014-09-15 | Merge pull request #140 | Riccardo Spagni | 1 | -0/+30 | |
0214524 added mikezackles / Zachary Michaels gpg key (Riccardo Spagni) | |||||
2014-09-15 | added mikezackles / Zachary Michaels gpg key | Riccardo Spagni | 1 | -0/+30 | |
2014-09-15 | Merge pull request #139 | Riccardo Spagni | 36 | -254/+500 | |
72a80f6 fixed incorrect version reference (Riccardo Spagni) 95a2701 Change testnet prefix (Zachary Michaels) 120c84d Make P2P use the testnet data dir (Zachary Michaels) 2352565 Replace macro with equivalent function call (Zachary Michaels) d033087 Separate testnet address prefix (Zachary Michaels) ee1bacc Add testnet seed nodes (Zachary Michaels) 4a6eb0a Create testnet data dir if necessary (Zachary Michaels) 018e251 Separate testnet default data dir (Zachary Michaels) 3ef7f33 Add descriptions for RPC command line params (Zachary Michaels) 1e38a02 Add testnet genesis tx as output by CN reference (Zachary Michaels) 96eed84 Pass tx and nonce to genesis block constructor (Zachary Michaels) 257077a Separate network id for testnet (Zachary Michaels) 658b669 Separate rpc port for testnet (Zachary Michaels) 98ed9a4 Separate p2p port for testnet (Zachary Michaels) fb4146f Reorganize testnet constants (Zachary Michaels) 79862ad Add testnet constants (Zachary Michaels) 07470fd Add testnet flag (Zachary Michaels) 32004a7 increase ABSTRACT_SERVER_SEND_QUE_MAX_COUNT to a more sane value (Riccardo Spagni) 2c0a87f additional README info on static builds and FreeBSD (Riccardo Spagni) | |||||
2014-09-15 | fixed incorrect version reference | Riccardo Spagni | 1 | -1/+1 | |
2014-09-15 | Change testnet prefix | Zachary Michaels | 1 | -2/+2 | |
2014-09-15 | Make P2P use the testnet data dir | Zachary Michaels | 1 | -1/+3 | |
2014-09-15 | Replace macro with equivalent function call | Zachary Michaels | 1 | -49/+45 | |
Also removed useless bool return | |||||
2014-09-15 | Separate testnet address prefix | Zachary Michaels | 21 | -69/+126 | |
2014-09-15 | Add testnet seed nodes | Zachary Michaels | 1 | -3/+8 | |
2014-09-15 | Create testnet data dir if necessary | Zachary Michaels | 1 | -0/+1 | |
2014-09-15 | Separate testnet default data dir | Zachary Michaels | 5 | -31/+44 | |
2014-09-15 | Add descriptions for RPC command line params | Zachary Michaels | 1 | -3/+9 | |
2014-09-15 | Add testnet genesis tx as output by CN reference | Zachary Michaels | 1 | -1/+1 | |
2014-09-15 | Pass tx and nonce to genesis block constructor | Zachary Michaels | 5 | -28/+43 | |
2014-09-15 | Separate network id for testnet | Zachary Michaels | 2 | -3/+15 | |
2014-09-15 | Separate rpc port for testnet | Zachary Michaels | 5 | -12/+44 | |
2014-09-15 | Separate p2p port for testnet | Zachary Michaels | 2 | -5/+23 | |
2014-09-15 | Reorganize testnet constants | Zachary Michaels | 14 | -80/+68 | |
2014-09-15 | Add testnet constants | Zachary Michaels | 1 | -0/+16 | |
2014-09-15 | Add testnet flag | Zachary Michaels | 15 | -52/+137 | |
Source: cryptonotefoundation | |||||
2014-09-15 | increase ABSTRACT_SERVER_SEND_QUE_MAX_COUNT to a more sane value | Riccardo Spagni | 1 | -1/+1 | |
2014-09-15 | additional README info on static builds and FreeBSD | Riccardo Spagni | 1 | -0/+7 | |
2014-09-15 | increase ABSTRACT_SERVER_SEND_QUE_MAX_COUNT to a more sane value | Riccardo Spagni | 1 | -1/+1 | |
2014-09-15 | additional README info on static builds and FreeBSD | Riccardo Spagni | 1 | -0/+7 | |
2014-09-15 | fix logic in tag check, AND -> OR | Riccardo Spagni | 1 | -1/+1 | |
Signed-off-by: Riccardo Spagni <ric@spagni.net> | |||||
2014-09-15 | ignore tag check if we haven't pulled tags | Riccardo Spagni | 1 | -1/+1 | |
Signed-off-by: Riccardo Spagni <ric@spagni.net> | |||||
2014-09-15 | Merge branch 'master' of http://github.com/fluffypony/bitmonero | Riccardo Spagni | 0 | -0/+0 | |
2014-09-15 | new Makefile target: release-static | Riccardo Spagni | 2 | -1/+5 | |
2014-09-15 | new Makefile target: release-static | Riccardo Spagni | 1 | -0/+4 | |
2014-09-15 | FreeBSD static linking fixes | Riccardo Spagni | 1 | -3/+3 | |
2014-09-14 | Merge branch 'master' of http://github.com/fluffypony/bitmonero | Riccardo Spagni | 0 | -0/+0 | |
2014-09-14 | add gpg pubkeys to start enforcing signed commits | Riccardo Spagni | 1 | -0/+50 | |
2014-09-13 | Merge pull request #136 | Riccardo Spagni | 3 | -48/+51 | |
bb2b606 fix incorrect error message (obvious cut and paste bug from upstream) (iamsmooth) 6b77e83 Change wallet to not try to extract tx public key when tx has no outputs (fixes 202612 tx format messages and is otherwise correct) (iamsmooth) 08205f0 output rng fix from boolberry (iamsmooth) | |||||
2014-09-13 | fix incorrect error message (obvious cut and paste bug from upstream) | iamsmooth | 1 | -1/+1 | |
2014-09-13 | add gpg pubkeys to start enforcing signed commits | Riccardo Spagni | 1 | -0/+50 | |
2014-09-13 | Change wallet to not try to extract tx public key when tx has no outputs ↵ | iamsmooth | 1 | -45/+49 | |
(fixes 202612 tx format messages and is otherwise correct) | |||||
2014-09-12 | output rng fix from boolberry | iamsmooth | 1 | -2/+1 | |
2014-09-12 | Merge pull request #133 from fluffypony/master | Riccardo Spagni | 1 | -1/+1 | |
fixed cmake variable matching | |||||
2014-09-12 | fixed cmake variable matching | Riccardo Spagni | 1 | -1/+1 | |
2014-09-12 | Merge pull request #132 from fluffypony/master | Riccardo Spagni | 7 | -42/+38 | |
versioning now includes the commit hash, or -final for tagged releases | |||||
2014-09-12 | Merge branch 'master' of http://github.com/fluffypony/bitmonero | Riccardo Spagni | 0 | -0/+0 | |
Conflicts: src/daemon/daemon.cpp | |||||
2014-09-12 | versioning now includes the commit hash, or -final for tagged releases | Riccardo Spagni | 7 | -37/+38 | |
2014-09-12 | always check git diff | Riccardo Spagni | 1 | -6/+1 | |
2014-09-12 | Merge pull request #129 from Jebes/master | Riccardo Spagni | 6 | -79/+177 | |
Added documentation to varint.h and util.h | |||||
2014-09-12 | versioning now includes the commit hash, or -final for tagged releases | Riccardo Spagni | 7 | -37/+38 | |
2014-09-12 | always check git diff | Riccardo Spagni | 1 | -6/+1 | |
2014-09-11 | HOW DO I ENGLISH? | jebes | 1 | -1/+1 | |
2014-09-11 | mispelled brief, corrected it | jebes | 2 | -14/+14 | |
2014-09-11 | Merge remote-tracking branch 'upstream/master' | jebes | 23 | -145/+553 | |
2014-09-11 | HOW DO I GIT? | jebes | 1 | -1/+1 | |
2014-09-11 | Documented varint | jebes | 4 | -40/+80 | |
2014-09-11 | Merge pull request #128 from fluffypony/master | Riccardo Spagni | 1 | -2/+6 | |
fixed UPNP_LIBRARIES scope | |||||
2014-09-11 | fixed UPNP_LIBRARIES scope | fluffypony | 1 | -2/+6 | |
2014-09-11 | Merge pull request #127 from fluffypony/master | Riccardo Spagni | 23 | -145/+549 | |
FreeBSD compatibility and default log level changes | |||||
2014-09-11 | cpu affinity fixes in performance tests for FreeBSD | fluffypony | 1 | -2/+2 | |
2014-09-11 | gtest patches for FreeBSD | fluffypony | 2 | -1/+9 | |
2014-09-11 | fixed upnp libs in tests cmake | fluffypony | 1 | -1/+31 | |
2014-09-11 | added license to CMake | fluffypony | 3 | -0/+92 | |
2014-09-11 | more CMake tweaks to allow detection on OS X | fluffypony | 3 | -190/+197 | |
2014-09-10 | more dynamic miniupnp fixes | fluffypony | 3 | -7/+19 | |
2014-09-10 | miniupnpc includes fixed | fluffypony | 1 | -2/+2 | |
2014-09-10 | use external miniupnpc if available | fluffypony | 3 | -7/+193 | |
2014-09-10 | miniupnpc changes for freebsd | fluffypony | 2 | -2/+6 | |
2014-09-10 | mmap on FreeBSD doesn't have MAP_HUGETLB | fluffypony | 1 | -1/+1 | |
2014-09-10 | Include sys/time.h on BSD | fluffypony | 1 | -0/+2 | |
2014-09-10 | replace ftime with gettimeofday on FreeBSD because lcompat is stupid | fluffypony | 3 | -8/+32 | |
2014-09-10 | make FreeBSD use -lcompat till we can fix ftime() | fluffypony | 2 | -4/+8 | |
2014-09-09 | commented util.h | jebes | 5 | -44/+102 | |
2014-09-09 | more FreeBSD fixes | fluffypony | 1 | -2/+7 | |
2014-09-09 | malloc.h reference fixed for FreeBSD | fluffypony | 1 | -2/+2 | |
2014-09-09 | exclude local miniupnpc for FreeBSD, install from ports instead | fluffypony | 2 | -10/+29 | |
2014-09-09 | FreeBSD alloca.h reference fixed | fluffypony | 2 | -2/+12 | |
2014-09-09 | a few more error messages moved to log level 1 | fluffypony | 2 | -15/+15 | |
2014-09-09 | moved non-critical warnings and errors to log level 1 | fluffypony | 12 | -107/+108 | |
2014-09-07 | Merge pull request #123 from fluffypony/master | Riccardo Spagni | 1 | -1/+1 | |
build number increase after release | |||||
2014-09-07 | build number increase after release | fluffypony | 1 | -1/+1 | |
2014-09-06 | Merge pull request #121 from fluffypony/masterv0.8.8.3 | Riccardo Spagni | 4 | -10/+96 | |
Fix tree_hash, patch for bad block 202612 | |||||
2014-09-06 | fix checkpoints | iamsmooth | 2 | -4/+7 | |
2014-09-06 | bug fix to checkpoint-on-restore; still fails on 612 | iamsmooth | 1 | -1/+1 | |
2014-09-06 | checkpoints on restore; currently fails on 212 checkpoint | iamsmooth | 2 | -2/+24 | |
2014-09-06 | Fix tree-hash cnt n^2. Asserts, comment. Squash2 | rfree2monero | 1 | -6/+48 | |
2014-09-06 | override for get_block_longhash for block 202612 | Thomas Winget | 1 | -0/+7 | |
2014-09-06 | added double-check for 202612 block id | Thomas Winget | 1 | -1/+13 | |
if a new block has the same block id as 202612 but the wrong blobdata, this will tell the caller that the block id is actually null_hash rather than the 202612 block id. | |||||
2014-09-06 | hex_to_pod needs the destination as an arg, as opposed to it returning the pod | Thomas Winget | 1 | -1/+1 | |
2014-09-06 | Override for block hashing for block 202612 | Thomas Winget | 1 | -0/+10 | |
Since we need to fix tree_hash, but doing so would invalidate the block id for block 202612, this fix should check to see if we're trying to get the block id for 202612 (if its blob hash matches) and return the "old" block id, for backwards compatibility. | |||||
2014-09-02 | Merge pull request #112 from fluffypony/master | Riccardo Spagni | 1 | -1/+4 | |
fixed OS X malloc.h reference | |||||
2014-09-02 | fixed OS X malloc.h reference | fluffypony | 1 | -1/+4 | |
2014-08-30 | Merge pull request #109 from fluffypony/master | Riccardo Spagni | 2 | -162/+98 | |
readme -> markdown | |||||
2014-08-30 | readme -> markdown | fluffypony | 2 | -162/+98 | |
2014-08-25 | bumped build number | fluffypony | 1 | -1/+1 | |
2014-08-23 | Merge pull request #104 from fluffypony/master | Riccardo Spagni | 1 | -2/+2 | |
Fees temporarily bumped to 0.1 XMR per tx to prevent spam attack | |||||
2014-08-23 | quick additional patch | fluffypony | 1 | -2/+1 | |
2014-08-23 | quick fee ramp to prevent spam attack | fluffypony | 1 | -3/+4 | |
2014-08-05 | Merge pull request #86 from jakoblind/seed | Riccardo Spagni | 7 | -1/+97 | |
Query view key and seed | |||||
2014-08-05 | added view_key to wallet RPC command query_key | Jakob Lind | 1 | -0/+4 | |
2014-08-05 | added viewkey command to CLI | Jakob Lind | 2 | -0/+9 | |
2014-08-05 | query_key command in wallet rpc. | Jakob Lind | 3 | -0/+44 | |
only support mnemonic as key_type currently | |||||
2014-08-03 | refactoring. get seed code in wallet2 | Jakob Lind | 3 | -12/+23 | |
2014-08-03 | check its deterministic wallet before printing seed | Jakob Lind | 1 | -3/+19 | |
when running the seed command | |||||
2014-08-03 | remove help text about seed only displayed once | Jakob Lind | 1 | -2/+2 | |
2014-08-03 | added seed command to get deterministic seed. | Jakob Lind | 2 | -0/+12 | |
not yet password protected | |||||
2014-08-03 | Merge pull request #81 from tewinget/restore-fix | Thomas Winget | 1 | -1/+17 | |
restored wallets will have timestamp set to June 8 2014. | |||||
2014-08-03 | restored wallets will have timestamp set to June 8 2014. | Thomas Winget | 1 | -1/+17 | |
2014-08-02 | Merge pull request #77 from fluffypony/master | Riccardo Spagni | 1 | -1/+1 | |
build number increased in staging | |||||
2014-08-02 | build number increased in staging | fluffypony | 1 | -1/+1 | |
2014-08-02 | Merge pull request #73 from jakoblind/refresh_height | Riccardo Spagni | 9 | -26/+41 | |
Optional height parameter for wallet refresh | |||||
2014-08-01 | Merge pull request #64 from mikezackles/bytecoin_tx_pool_tmp | Riccardo Spagni | 3 | -95/+82 | |
tx pool fixes, courtesy of Bytecoin | |||||
2014-08-01 | #36 make it compile and work properly | Jakob Lind | 1 | -4/+2 | |
2014-08-01 | #36 simplewallet refresh include optional height param | Jakob Lind | 9 | -22/+39 | |
height param is used optionally in refresh command TODO: This should also be the default behaviour when generating a new wallet. | |||||
2014-07-25 | Merge pull request #72 from fluffypony/master | Riccardo Spagni | 104 | -2671/+2067 | |
move modified epee code to new classes, revert license | |||||
2014-07-25 | move modified epee code to new classes, revert license | fluffypony | 104 | -2671/+2067 | |
2014-07-24 | Merge pull request #71 from Jojatekok/master | Riccardo Spagni | 1 | -0/+45 | |
Added a build script for Windows | |||||
2014-07-24 | Added license for the Windows build script | Jojatekok | 1 | -1/+29 | |
2014-07-24 | Added a build script for Windows | Jojatekok | 1 | -0/+17 | |
2014-07-23 | Merge pull request #70 from fluffypony/master | Riccardo Spagni | 311 | -2694/+8794 | |
New readme, license changes | |||||
2014-07-23 | Merge pull request #69 from ekimmo/monero/master | Riccardo Spagni | 2 | -2/+2 | |
wallet rpc: actually populate the extra while assembling a transaction | |||||
2014-07-23 | wallet rpc: actually populate the extra while assembling a transaction | Erik Kimmo | 2 | -2/+2 | |
2014-07-23 | License updated to BSD 3-clause | fluffypony | 311 | -2664/+8655 | |
2014-07-23 | New README | fluffypony | 1 | -32/+141 | |
2014-07-23 | Merge pull request #68 from tewinget/daemon_rpc | Thomas Winget | 2 | -3/+4 | |
daemon rpc get_connections call minor changes | |||||
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 | Merge pull request #67 from mikezackles/get_info | mikezackles | 2 | -0/+26 | |
Add get_info command to daemon json rpc | |||||
2014-07-22 | Add get_info command to daemon json rpc | Zachary Michaels | 2 | -0/+26 | |
2014-07-22 | Merge pull request #66 from mikezackles/master | mikezackles | 5 | -5/+81 | |
Add get_bulk_payments rpc call | |||||
2014-07-22 | Add get_bulk_payments rpc call | Zachary Michaels | 5 | -5/+81 | |
2014-07-18 | Merge pull request #65 from tewinget/daemon_rpc | Thomas Winget | 6 | -0/+116 | |
Added get_connections RPC call to daemon Only consists of new functionality and doesn't break build, merging per request. | |||||
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 | 16 | -61/+53 | |
Misc fixes from bytecoin | |||||
2014-07-17 | Remove dead code | Zachary Michaels | 1 | -17/+0 | |
2014-07-17 | Remove second tx size check | Zachary Michaels | 1 | -7/+0 | |
2014-07-17 | Don't check max tx size when adding to block | Zachary Michaels | 1 | -8/+0 | |
This is now done when adding transactions to the pool. | |||||
2014-07-17 | Don't check for min fee when adding tx to block | Zachary Michaels | 1 | -5/+0 | |
This is now done when transactions enter the pool. | |||||
2014-07-17 | Decrease max block size from 200% median to 130% | Zachary Michaels | 1 | -1/+3 | |
2014-07-17 | Use print_money in log | Zachary Michaels | 1 | -1/+1 | |
2014-07-17 | Minimum tx fee for entering pool | Zachary Michaels | 1 | -0/+8 | |
2014-07-17 | Start fresh if tx_pool deserialize fails | Zachary Michaels | 1 | -2/+6 | |
2014-07-17 | Add transaction size limit | Zachary Michaels | 1 | -0/+24 | |
Transactions larger than the limit will not enter the pool | |||||
2014-07-17 | Use const where appropriate in tx_pool | Zachary Michaels | 3 | -50/+36 | |
2014-07-17 | Make some tx_pool methods static | Zachary Michaels | 1 | -2/+2 | |
2014-07-17 | Make some tx_pool methods private | Zachary Michaels | 1 | -6/+6 | |
2014-07-06 | Merge pull request #56 from tewinget/master | Thomas Winget | 9 | -49/+378 | |
transaction splitting | |||||
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 | Allow conditional compilation with VS 2013+ | Zachary Michaels | 1 | -1/+1 | |
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. |