aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallettool.cpp
Commit message (Collapse)AuthorAgeFilesLines
* scripted-diff: Replace fprintf with tfm::formatMarcoFalke2019-06-181-19/+19
| | | | | | | | | | | -BEGIN VERIFY SCRIPT- sed -i --regexp-extended -e 's/fprintf\(std(err|out), /tfm::format(std::c\1, /g' $(git grep -l 'fprintf(' -- ':(exclude)src/crypto' ':(exclude)src/leveldb' ':(exclude)src/univalue' ':(exclude)src/secp256k1') -END VERIFY SCRIPT- fixup! scripted-diff: Replace fprintf with tfm::format Github-Pull: #16205 Rebased-From: fac03ec43a15ad547161e37e53ea82482cc508f9
* Exceptions should be caught by reference, not by value.Kristaps Kaupe2019-06-181-1/+1
| | | | | Github-Pull: #16095 Rebased-From: ae7faf20d5fb3e2415ccadc37100dfc44aa0cd94
* [wallet] Close bdb when flushing wallet.John Newbery2019-02-121-3/+3
| | | | | bdb would not be closed when closing the wallet in wallet-tool. Fix this by calling wallet->flush with true.
* wallet: Add lock annotation for mapAddressBookMarcoFalke2019-02-071-1/+0
|
* [tools] Add wallet inspection and modification toolJonas Schnelli2019-01-301-0/+139
This commit adds wallet-tool, a tool for creating and interacting with wallet files. Original implementation was by Jonas Schnelli <[email protected]> with modifications by John Newbery <[email protected]> MSVC files were provided by Chun Kuan Lee <[email protected]>: build: Add MSVC project files for bitcoin-wallet-tool