aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
| * obtain cs_wallet mutex to protect vchDefaultKeyGavin Andresen2011-09-011-9/+12
| |
| * Logic running with -keypool=0 was wrong (empty keys were being returned). ↵Gavin Andresen2011-09-011-7/+24
| | | | | | | | | | | | Fixes #445 Renames GetOrReuseKeyFromKeyPool to GetKeyFromPool, with fAllowReuse arg and bool result.
| * Fixed potential deadlocks in GUI code.Gavin Andresen2011-08-311-16/+0
| | | | | | | | | | Also changed semantics of CWalletTx::GetTxTime(); now always returns the time the transaction was received by this node, not the average block time. And added information about -DDEBUG_LOCKORDER to coding.txt.
| * Fix rpc-hanging deadlocksGavin Andresen2011-08-311-109/+100
| | | | | | | | | | Collapsed multiple wallet mutexes to a single cs_wallet, to avoid deadlocks with wallet methods that acquired locks in different order. Also change master RPC call handler to acquire cs_main and cs_wallet locks before executing RPC calls; requiring each RPC call to acquire the right set of locks in the right order was too error-prone.
* | Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan2011-08-161-1/+2
|\|
| * Unify copyright notices.Matt Corallo2011-08-091-1/+2
| | | | | | | | | | | | To a variation on: // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers
* | Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan2011-07-271-1/+1
|\| | | | | | | | | Conflicts: src/script.cpp
| * Bugfix: don't overuse limited ExtractAddressPieter Wuille2011-07-261-1/+1
| | | | | | | | | | | | ExtractAddress was called with the keystore as argument in RPC and UI, limiting results to own keys. This caused empty "address" fields.
* | Merge remote branch 'upstream/master'Wladimir J. van der Laan2011-07-261-32/+33
|\| | | | | | | | | Conflicts: src/bitcoinrpc.cpp
| * Merge pull request #403 from sipa/cbitcoinaddressJeff Garzik2011-07-241-29/+22
| |\ | | | | | | keys indexed by address + introduced CBitcoinaddress
| | * Use CBitcoinAddress instead of string/uint160Pieter Wuille2011-07-171-24/+20
| | | | | | | | | | | | | | | | | | Instead of conversion functions between pubkey/uint160/address in base58.h, have a fully fledged class CBitcoinAddress (CAddress was already taken) to represent addresses.
| | * get rid of mapPubKeysPieter Wuille2011-07-171-6/+3
| | | | | | | | | | | | | | | Make CKeyStore's interface work on uint160's instead of pubkeys, so no separate global mapPubKeys is necessary anymore.
| * | Fix for small change outputsPieter Wuille2011-07-241-3/+11
| |/ | | | | | | | | | | | | | | | | | | With the separation of CENT and MIN_TX_FEE, it is now reasonable to create change outputs between 0.01 and 0.0005, as these are spendable according to the policy, even though they require a fee to be paid. Also, when enough fee was already present, everything can go into a change output, without further increasing the fee.
* | Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan2011-07-151-32/+243
|\|
| * Fix Build in GetReservedKey() in wallet.cppMatt Corallo2011-07-141-1/+1
| |
| * Generate Warning when using default key.Matt Corallo2011-07-141-0/+3
| |
| * Fix crashes when a wallet is locked and GetReservedKey() is calledMatt Corallo2011-07-141-1/+4
| |
| * Merge pull request #406 from muggenhor/warning-fixesJeff Garzik2011-07-131-0/+1
| |\ | | | | | | Warning fixes
| | * fix warning: control reaches end of non-void function [-Wreturn-type]Giel van Schijndel2011-07-131-0/+1
| | | | | | | | | | | | Signed-off-by: Giel van Schijndel <[email protected]>
| * | Bugfix: add autogenerated addresses to address bookPieter Wuille2011-07-131-0/+3
| |/
| * Update CWallet::LoadWallet for proper return type.Jeff Garzik2011-07-131-3/+3
| |
| * fix warning: unused variable 'X' [-Wunused-variable]Giel van Schijndel2011-07-131-3/+0
| | | | | | | | | | | | Remove several unused variables. Signed-off-by: Giel van Schijndel <[email protected]>
| * Merge pull request #381 from TheBlueMatt/nminversionJeff Garzik2011-07-121-2/+3
| |\ | | | | | | Add minversion to wallet.
| | * Add minversion to wallet.Matt Corallo2011-07-051-2/+3
| | |
| * | Make an invalid addrIncoming so that old clients crash.Matt Corallo2011-07-131-0/+15
| | | | | | | | | | | | | | | This prevents old clients from opening, and thus corrupting or otherwise causing harm to encrypted wallets.
| * | Use DB Transactions when encrypting wallet.Matt Corallo2011-07-131-6/+25
| | | | | | | | | | | | This speeds up the encryption process significantly.
| * | Set the number of SHA512 rounds based on the speed of the computer.Matt Corallo2011-07-131-0/+26
| | |
| * | Add wallet privkey encryption.Matt Corallo2011-07-131-20/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds support for ckeys, or enCrypted private keys, to the wallet. All keys are stored in memory in their encrypted form and thus the passphrase is required from the user to spend coins, or to create new addresses. Keys are encrypted with AES-256-CBC using OpenSSL's EVP library. The key is calculated via EVP_BytesToKey using SHA512 with (by default) 25000 rounds and a random salt. By default, the user's wallet remains unencrypted until they call the RPC command encryptwallet <passphrase> or, from the GUI menu, Options-> Encrypt Wallet. When the user is attempting to call RPC functions which require the password to unlock the wallet, an error will be returned unless they call walletpassphrase <passphrase> <time to keep key in memory> first. A keypoolrefill command has been added which tops up the users keypool (requiring the passphrase via walletpassphrase first). keypoolsize has been added to the output of getinfo to show the user the number of keys left before they need to specify their passphrase (and call keypoolrefill). Note that walletpassphrase will automatically fill keypool in a separate thread which it spawns when the passphrase is set. This could cause some delays in other threads waiting for locks on the wallet passphrase, including one which could cause the passphrase to be stored longer than expected, however it will not allow the passphrase to be used longer than expected as ThreadCleanWalletPassphrase will attempt to get a lock on the key as soon as the specified lock time has arrived. When the keypool runs out (and wallet is locked) GetOrReuseKeyFromPool returns vchDefaultKey, meaning miners may start to generate many blocks to vchDefaultKey instead of a new key each time. A walletpassphrasechange <oldpassphrase> <newpassphrase> has been added to allow the user to change their password via RPC. Whenever keying material (unencrypted private keys, the user's passphrase, the wallet's AES key) is stored unencrypted in memory, any reasonable attempt is made to mlock/VirtualLock that memory before storing the keying material. This is not true in several (commented) cases where mlock/VirtualLocking the memory is not possible. Although encryption of private keys in memory can be very useful on desktop systems (as some small amount of protection against stupid viruses), on an RPC server, the password is entered fairly insecurely. Thus, the only main advantage encryption has for RPC servers is for RPC servers that do not spend coins, except in rare cases, eg. a webserver of a merchant which only receives payment except for cases of manual intervention. Thanks to jgarzik for the original patch and sipa, gmaxwell and many others for all their input. Conflicts: src/wallet.cpp
| * | Prepare codebase for Encrypted Keys.Pieter Wuille2011-07-081-4/+5
| | |
| * | Fix synchronization of default keyPieter Wuille2011-07-051-10/+14
| |/
| * Fix AddressBook syncrhonization between a CWallet and CWalletDBStéphane Gimenez2011-06-271-0/+18
| | | | | | | | This problem was reported independently by laanwj in Issue #350.
| * Fix segfault when creating new walletPieter Wuille2011-06-261-9/+3
| | | | | | | | | | The initialization of the default key used keyUser instead of vchDefaultKey. keyUser is now complete removed.
| * Bugfixes walletclassPieter Wuille2011-06-201-1/+1
| | | | | | | | | | | | | | Some problems found by ius: * compiler complains with no return after critical section block * CKeyStore::GetPrivKey(key) was undefined for unknown key * missing return statement in GetChange()
| * CWalletTx::GetAmounts(): pass NULL for CKeyStore*, rather than falseJeff Garzik2011-06-181-1/+1
| | | | | | | | to fix warning.
| * CWallet classPieter Wuille2011-06-151-103/+170
| | | | | | | | | | | | | | | | | | | | | | | | * A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore. * A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around. * Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter * CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions. * Some code was moved from CWalletDB to CWallet, such as handling of reserve keys. * Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument. * The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable. * Functions in main.cpp and db.cpp that are not used by other modules are marked static. * The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
| * move wallet code to separate filePieter Wuille2011-06-151-0/+1056
| | | | | | This introduces two new source files, keystore.cpp and wallet.cpp with corresponding headers. Code is moved from main and db, in a preparation for a follow-up commit which introduces the classes CWallet and CKeyStore.
* Show unconfirmed balance on overview pageWladimir J. van der Laan2011-07-111-0/+15
|
* Sync to bitcoin git e94010b2395694d56dd6Wladimir J. van der Laan2011-07-071-69/+32
|
* as there is no "default receiving address" in this GUI, don't autogenerate ↵Wladimir J. van der Laan2011-07-041-2/+2
| | | | new addresses on receiving
* update core to d0d80170a2ca73004e08fb85007fe055cbf4e411 (CWallet class)Wladimir J. van der Laan2011-06-261-0/+1176