summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* version bump to 0.8.8.6v0.8.8.6Riccardo Spagni2014-12-081-1/+1
|
* Merge pull request #196Riccardo Spagni2014-12-083-33/+66
|\ | | | | | | | | | | | | | | f9822c4 wallet JSON update for non-deterministic wallet data (warptangent) 4c6230d Checking and handling for deterministic vs non-deterministic wallet (warptangent) 1beedb9 Extract check for deterministic keys to wallet2::is_deterministic() (warptangent) 359ede3 indentation (warptangent) 2290eff replace lines with call to recently added print_seed() (warptangent)
| * wallet JSON update for non-deterministic wallet datawarptangent2014-12-061-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | wallet2::store_keys() and wallet2::load_keys() should only use the JSON attribute "seed_language" when applicable. That is only for deterministic wallets. - store_keys() don't add JSON attribute "seed_language" if seed_language is empty - load_keys() don't call set_seed_language if JSON attribute "seed_language" not present
| * Checking and handling for deterministic vs non-deterministic walletwarptangent2014-12-061-18/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | simple_wallet::seed() - Check that wallet is deterministic. simple_wallet::new_wallet() - Prompt for seed language only if it's a non-deterministic wallet, along with previous conditions. simple_wallet::open_wallet() - Fixed check for deterministic wallet (flag based on command line non-deterministic argument was used before, but it's inapplicable to opening an existing wallet). - As with deterministic wallet, non-deterministic also included to be rewritten to new JSON format file. That's what's done for newly generated non-deterministic wallets, so old versions should be updated to same format.
| * Extract check for deterministic keys to wallet2::is_deterministic()warptangent2014-12-062-6/+20
| | | | | | | | | | It's cleaner for wallet2.cpp and it also allows deterministic check by simplewallet.cpp.
| * indentationwarptangent2014-12-061-1/+1
| |
| * replace lines with call to recently added print_seed()warptangent2014-12-061-4/+1
| |
* | Merge pull request #183Riccardo Spagni2014-12-081-1/+5
|\ \ | |/ |/| | | 250254c Exception handling while refreshing in rpc wallet (credits to QCN) (Sammy Libre)
| * Exception handling while refreshing in rpc wallet (credits to QCN)Sammy Libre2014-11-011-1/+5
| |
* | update unbound from upstreamRiccardo Spagni2014-12-0472-2655/+1261
| |
* | increased version number for tagged releasev0.8.8.5Riccardo Spagni2014-12-021-1/+1
| |
* | fixed CMake version matchingRiccardo Spagni2014-12-021-1/+1
| |
* | Merge pull request #186Riccardo Spagni2014-12-023-6/+3
|\ \ | | | | | | | | | | | | | | | | | | 3300ae5 remove unused display variable (warptangent) 0e0e557 return true on success (warptangent) 2e11eb1 deterministic wallet use of twelve words fixed (warptangent) 21a3c46 ensure that keccak is called on view spend key, not a possibly pre-sc_reduce32 version of it - for deriving view secret key (warptangent)
| * | remove unused display variablewarptangent2014-12-011-3/+0
| | |
| * | return true on successwarptangent2014-12-011-1/+1
| | |
| * | deterministic wallet use of twelve words fixedwarptangent2014-12-011-1/+1
| | |
| * | ensure that keccak is called on view spend key, not a possibly ↵warptangent2014-12-011-1/+1
| | | | | | | | | | | | | | | | | | pre-sc_reduce32 version of it - for deriving view secret key
* | | Merge pull request #187Riccardo Spagni2014-12-023-0/+24
|\ \ \ | |/ / |/| | | | | 3dd19c4 prompt for seed language and error handling - "seed" simplewallet command was only displaying seed if wallet was newly generated (warptangent)
| * | prompt for seed language and error handlingwarptangent2014-12-013-0/+24
|/ / | | | | | | - "seed" simplewallet command was only displaying seed if wallet was newly generated
* | Merge pull request #192Riccardo Spagni2014-12-0129-30/+8198
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | affde29 moved rapidjson to external folder, fixed CMake (Riccardo Spagni) f1eaf88 Prints seed after wallet upgrade. Removed iostream include. (Oran Juice) 70971be Doxygen comments (Oran Juice) 031ca23 Rewrites to old wallet file correctly (Oran Juice) 1f833dc Doxygen comments in (Oran Juice) 0bd88ff Writes seed language while generating wallet. Wallet open fix. (Oran Juice) 09a659e Stores seed language in wallet file. added rapidjson. Yet to test backward compatibility (Oran Juice)
| * | moved rapidjson to external folder, fixed CMakeRiccardo Spagni2014-12-0125-1/+3
| | |
| * | Merge pull request #1Riccardo Spagni2014-12-0129-30/+8196
|/| | | | | | | | | | | | | | | | | | | | | | | | | | f1eaf88 Prints seed after wallet upgrade. Removed iostream include. (Oran Juice) 70971be Doxygen comments (Oran Juice) 031ca23 Rewrites to old wallet file correctly (Oran Juice) 1f833dc Doxygen comments in (Oran Juice) 0bd88ff Writes seed language while generating wallet. Wallet open fix. (Oran Juice) 09a659e Stores seed language in wallet file. added rapidjson. Yet to test backward compatibility (Oran Juice)
| * | Prints seed after wallet upgrade. Removed iostream include.Oran Juice2014-10-193-6/+26
| | |
| * | Doxygen commentsOran Juice2014-10-192-21/+40
| | |
| * | Rewrites to old wallet file correctlyOran Juice2014-10-193-3/+18
| | |
| * | Doxygen comments inOran Juice2014-10-182-5/+37
| | |
| * | Writes seed language while generating wallet. Wallet open fix.Oran Juice2014-10-183-22/+38
| | |
| * | Stores seed language in wallet file. added rapidjson. Yet to test backward ↵Oran Juice2014-10-1828-4/+8068
| | | | | | | | | | | | compatibility
* | | Merge pull request #191Riccardo Spagni2014-12-012-6/+15
|\ \ \ | | | | | | | | | | | | 685dd4a don't build tests unless we're building all-* or *-test builds (Riccardo Spagni)
| * | | don't build tests unless we're building all-* or *-test buildsRiccardo Spagni2014-12-012-6/+15
|/ / /
* | | updated readme to include libevent / libgtest depsRiccardo Spagni2014-11-271-1/+1
| | |
* | | Merge pull request #188Riccardo Spagni2014-11-265-9/+10
|\ \ \ | | | | | | | | | | | | | | | | dde7897 Disable legacy fees for now (iamsmooth) cc74b43 Remove DEFAULT_FEE, add temporary acceptance of too-small per-kb fee >= 0.1, denominations based on DEFAULT_DUST_THRESHOLD, document fee arg to create_transactions as unused, se DEFAULT_DUST_THRESHOLD for wallet dust collection instead of calcualted tx fee (iamsmooth)
| * | | Disable legacy fees for nowiamsmooth2014-11-112-2/+2
| | | |
| * | | Remove DEFAULT_FEE, add temporary acceptance of too-small per-kb fee >= 0.1, ↵iamsmooth2014-11-095-9/+10
| | | | | | | | | | | | | | | | denominations based on DEFAULT_DUST_THRESHOLD, document fee arg to create_transactions as unused, se DEFAULT_DUST_THRESHOLD for wallet dust collection instead of calcualted tx fee
* | | | Merge pull request #180Riccardo Spagni2014-11-2532-340/+2905
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ce71c01 cmake: work around a bug with implicit link directories (Ben Boeckel) de4fc40 mingw: copy required libraries to the build tree (Ben Boeckel) ec54e2f cmake: place binaries together in the build tree (Ben Boeckel) 18c56ab msys: don't use LTO (Ben Boeckel) 5680c9c msys: factor out -Werror on msys (Ben Boeckel) 4751542 msys: look in msys' directory for files (Ben Boeckel) d855fe4 miniupnpc: bump the _POSIX_C_SOURCE feature macro (Ben Boeckel) c696492 unbound: fix getaddrinfo detection for 32-bit windows (Ben Boeckel) e377687 cmake: Windows and static builds need this (Ben Boeckel) 01895dd cmake: fix up link lines (Ben Boeckel) 4b6515c unbound: fix type checking (Ben Boeckel) d43a20f unbound: plumb the libdir up (Ben Boeckel) 7d708e4 cmake: support 2.8.7 (Ben Boeckel) 464c280 cmake: fix up miniupnpc's define (Ben Boeckel) 9689df9 cmake: clean up EXTRA_LIBRARIES (Ben Boeckel) 3b7bdcb cmake: set the project name (Ben Boeckel) 0f0efc4 cmake: prepend to CMAKE_MODULE_PATH (Ben Boeckel) 031e3da cmake: remove scream-make (all-caps functions) (Ben Boeckel) abbd5c0 unbound: import cmake build system (Ben Boeckel) e59b5b7 miniupnpc: clean up build system (Ben Boeckel) 475fe20 cmake: minor cleanups (indentation and typos) (Ben Boeckel) 799e8b2 cmake: use option() for STATIC (Ben Boeckel) c24d22b cmake: clean up if auto-dereferencing (Ben Boeckel) 9ed415a build: inform the build of what generates version.h (Ben Boeckel) eba180a cmake: support git info in released tarballs (Ben Boeckel) eeffac6 cmake: fix up BOOST_IGNORE_SYSTEM_PATHS (Ben Boeckel) a43f1a8 cmake: remove configuration variables (Ben Boeckel) a87ce09 cmake: factor out error messages (Ben Boeckel) 9aa48b6 miniupnpc: clear out else/endfoo command arguments (Ben Boeckel) 8a86ac8 daemon_tests: update cmake code (Ben Boeckel) fa3ff75 gtest: support an external gtest (Ben Boeckel) 7bfcffa cmake: put each test executable in its own directory (Ben Boeckel) f53f047 cmake: handle private vs. public headers (Ben Boeckel) 55ca7d3 cmake: refactor common code with libraries (Ben Boeckel) c773f46 cmake: refactor common code with executables (Ben Boeckel) 89cff7b cmake: put each library into its own directory (Ben Boeckel)
| * | | cmake: work around a bug with implicit link directoriesBen Boeckel2014-11-181-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | Unfortunately, this is necessary because CMake doesn't detect whether mingw libraries are static or shared and doesn't put a -static flag around the -lfoo argument which then makes the shared library be linked to.
| * | | mingw: copy required libraries to the build treeBen Boeckel2014-11-181-0/+16
| | | | | | | | | | | | | | | | | | | | These are found as shared libraries and need to be copied so that PATH manipulation isn't necessary outside of an msys shell.
| * | | cmake: place binaries together in the build treeBen Boeckel2014-11-181-0/+3
| | | | | | | | | | | | | | | | | | | | This allows Windows to copy binaries to one place rather than to each executable directory.
| * | | msys: don't use LTOBen Boeckel2014-11-171-0/+2
| | | | | | | | | | | | | | | | This causes duplicate symbol errors on msys' mingw install.
| * | | msys: factor out -Werror on msysBen Boeckel2014-11-171-1/+4
| | | | | | | | | | | | | | | | There are Windows-related warnings turned into errors here.
| * | | msys: look in msys' directory for filesBen Boeckel2014-11-171-0/+5
| | | | | | | | | | | | | | | | | | | | This tells find_path and find_library to look under this directory first which is what we want on msys2.
| * | | miniupnpc: bump the _POSIX_C_SOURCE feature macroBen Boeckel2014-11-101-1/+1
| | | | | | | | | | | | | | | | FreeBSD doesn't expose IPv6 structures without this.
| * | | unbound: fix getaddrinfo detection for 32-bit windowsBen Boeckel2014-10-241-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Windows, getaddrinfo is part of the Windows API and as such is __stdcall, not __cdecl, so check_function_exists fails because the declaration doesn't match the mangling __stdcall has. Instead, use a header to include the symbol as declared on the system and use check_symbol_exists instead. Tested-By: greatwolf on IRC
| * | | cmake: Windows and static builds need thisBen Boeckel2014-10-241-1/+1
| | | |
| * | | cmake: fix up link linesBen Boeckel2014-10-245-3/+7
| | | |
| * | | unbound: fix type checkingBen Boeckel2014-10-241-2/+2
| | | |
| * | | unbound: plumb the libdir upBen Boeckel2014-10-242-1/+6
| | | | | | | | | | | | | | | | | | | | This is necessary for static builds where the linking is passed around to dependent targets, but the library is lost.
| * | | cmake: support 2.8.7Ben Boeckel2014-10-2422-28/+28
| | | | | | | | | | | | | | | | | | | | | | | | Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer versions prefer PUBLIC and PRIVATE instead, but still support the LINK_ prefix.
| * | | cmake: fix up miniupnpc's defineBen Boeckel2014-10-232-6/+10
| | | | | | | | | | | | | | | | | | | | It's only necessary on Windows builds and new versions renamed the define without any compatibility bridge.
| * | | cmake: clean up EXTRA_LIBRARIESBen Boeckel2014-10-231-3/+1
| | | | | | | | | | | | | | | | pthread is handled by CMAKE_THREAD_LIBS_INIT while libdl isn't needed.