1. 04 Dec, 2012 1 commit
  2. 15 Nov, 2012 1 commit
  3. 13 Nov, 2012 2 commits
  4. 01 Nov, 2012 1 commit
    • Pieter Wuille's avatar
      Bugfix: do not keep relaying spent wallet transactions · ce5d0d47
      Pieter Wuille authored
      The original test (checking whether the transaction occurs in the
      txindex) is not usable anymore, as it will miss anything already
      fully spent. However, as merkle transactions (and by extension,
      wallet transactions) track which block they were last seen being
      included in, we can use that to determine the need for
      rebroadcasting.
      ce5d0d47
  5. 25 Oct, 2012 1 commit
  6. 21 Oct, 2012 1 commit
  7. 20 Oct, 2012 3 commits
    • Pieter Wuille's avatar
      Transaction hash caching · a436dffe
      Pieter Wuille authored
      Use CBlock's vMerkleTree to cache transaction hashes, and pass them
      along as argument in more function calls. During initial block download,
      this results in every transaction's hash to be only computed once.
      a436dffe
    • Pieter Wuille's avatar
      Batch block connection during IBD · 6088b917
      Pieter Wuille authored
      During the initial block download (or -loadblock), delay connection
      of new blocks a bit, and perform them in a single action. This reduces
      the load on the database engine, as subsequent blocks often update an
      earlier block's transaction already.
      6088b917
    • Pieter Wuille's avatar
      Ultraprune · f4f73a94
      Pieter Wuille authored
      This switches bitcoin's transaction/block verification logic to use a
      "coin database", which contains all unredeemed transaction output scripts,
      amounts and heights.
      
      The name ultraprune comes from the fact that instead of a full transaction
      index, we only (need to) keep an index with unspent outputs. For now, the
      blocks themselves are kept as usual, although they are only necessary for
      serving, rescanning and reorganizing.
      
      The basic datastructures are CCoins (representing the coins of a single
      transaction), and CCoinsView (representing a state of the coins database).
      There are several implementations for CCoinsView. A dummy, one backed by
      the coins database (coins.dat), one backed by the memory pool, and one
      that adds a cache on top of it. FetchInputs, ConnectInputs, ConnectBlock,
      DisconnectBlock, ... now operate on a generic CCoinsView.
      
      The block switching logic now builds a single cached CCoinsView with
      changes to be committed to the database before any changes are made.
      This means no uncommitted changes are ever read from the database, and
      should ease the transition to another database layer which does not
      support transactions (but does support atomic writes), like LevelDB.
      
      For the getrawtransaction() RPC call, access to a txid-to-disk index
      would be preferable. As this index is not necessary or even useful
      for any other part of the implementation, it is not provided. Instead,
      getrawtransaction() uses the coin database to find the block height,
      and then scans that block to find the requested transaction. This is
      slow, but should suffice for debug purposes.
      f4f73a94
  8. 08 Oct, 2012 1 commit
    • Gavin Andresen's avatar
      Handle corrupt wallets gracefully. · 6e94595b
      Gavin Andresen authored
      Corrupt wallets used to cause a DB_RUNRECOVERY uncaught exception and a
      crash. This commit does three things:
      
      1) Runs a BDB verify early in the startup process, and if there is a
      low-level problem with the database:
        + Moves the bad wallet.dat to wallet.timestamp.bak
        + Runs a 'salvage' operation to get key/value pairs, and
          writes them to a new wallet.dat
        + Continues with startup.
      
      2) Much more tolerant of serialization errors. All errors in deserialization
      are reported by tolerated EXCEPT for errors related to reading keypairs
      or master key records-- those are reported and then shut down, so the user
      can get help (or recover from a backup).
      
      3) Adds a new -salvagewallet option, which:
       + Moves the wallet.dat to wallet.timestamp.bak
       + extracts ONLY keypairs and master keys into a new wallet.dat
       + soft-sets -rescan, to recreate transaction history
      
      This was tested by randomly corrupting testnet wallets using a little
      python script I wrote (https://gist.github.com/3812689)
      6e94595b
  9. 01 Oct, 2012 1 commit
  10. 08 Sep, 2012 1 commit
  11. 05 Sep, 2012 1 commit
  12. 02 Sep, 2012 1 commit
  13. 29 Aug, 2012 1 commit
  14. 24 Aug, 2012 2 commits
  15. 23 Aug, 2012 5 commits
  16. 01 Aug, 2012 2 commits
  17. 05 Jul, 2012 1 commit
    • Gavin Andresen's avatar
      Implement raw transaction RPC calls · 7d5e2f6b
      Gavin Andresen authored
      Implement listunspent / getrawtransaction / createrawtransaction /
      signrawtransaction, to support creation and
      signing-on-multiple-device multisignature transactions.
      7d5e2f6b
  18. 04 Jun, 2012 4 commits
  19. 25 May, 2012 1 commit
    • sje397's avatar
      Added 'immature balance' for miners. Only displayed if the balance is greater than zero. · 869f8b2c
      sje397 authored
      This adds a field labelled 'Immature' in the overview section under the 'unconfirmed' field, which shows mined
      income that has not yet matured (which is currently not displayed anywhere, even though the transactions
      exist in the transaction list). To do that I added a 'GetImmatureBalance' method to the wallet, and connected
      that through to the GUI as per the 'GetBalance' and 'GetUnconfirmedBalance' methods. I did a small 'no-op'
      change to make the code in adjacent functions a little more readable (imo); it was a change I had made in my
      repo earlier...but I thought it wouldn't hurt so left it in. Immature balance comes from mined income that is
      at least two blocks deep in the chain (same logic as displayed transactions).
      
      My reasoning is:
      - as a miner, it's a critical stat I want to see
      - as a miner, and taking into account the label 'immature', the uncertainty is pretty clearly implied
      - those numbers are already displayed in the transaction list
      - this makes the overview numbers add up to what's in the transaction list
      - it's not displayed if the immature balance is 0, so won't bother non-miners
      
      I also 'cleaned' the overview UI a little, moving code to the XML and removing HTML.
      869f8b2c
  20. 24 May, 2012 2 commits
    • Pieter Wuille's avatar
      Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress · 0c0b1b4e
      Pieter Wuille authored
      This introduces internal types:
      * CKeyID: reference (hash160) of a key
      * CScriptID: reference (hash160) of a script
      * CTxDestination: a boost::variant of the former two
      
      CBitcoinAddress is retrofitted to be a Base58 encoding of a
      CTxDestination. This allows all internal code to only use the
      internal types, and only have RPC and GUI depend on the base58 code.
      
      Furthermore, the header dependencies are a lot saner now. base58.h is
      at the top (right below rpc and gui) instead of at the bottom. For the
      rest: wallet -> script -> keystore -> key. Only keystore still requires
      a forward declaration of CScript. Solving that would require splitting
      script into two layers.
      0c0b1b4e
    • Pieter Wuille's avatar
      Encapsulate public keys in CPubKey · 639a4dec
      Pieter Wuille authored
      639a4dec
  21. 20 May, 2012 3 commits
    • Wladimir J. van der Laan's avatar
      Process address book updates incrementally · 97626c2d
      Wladimir J. van der Laan authored
      - No longer invalidates selection model, thus retains selection on address book changes
      - Fixes selection of new address when added
      97626c2d
    • Wladimir J. van der Laan's avatar
      Convert UI interface to boost::signals2. · c0857bc0
      Wladimir J. van der Laan authored
      - Signals now go directly from the core to WalletModel/ClientModel.
        - WalletModel subscribes to signals on CWallet: Prepares for multi-wallet support, by no longer assuming an implicit global wallet.
      - Gets rid of noui.cpp, the few lines that were left are merged into init.cpp
      - Rename wxXXX message flags to MF_XXX, to make them UI indifferent.
      - ThreadSafeMessageBox no longer returns the value `4` which was never used, converted to void.
      c0857bc0
    • Wladimir J. van der Laan's avatar
      Fine-grained UI updates · ff502565
      Wladimir J. van der Laan authored
      Gets rid of `MainFrameRepaint` in favor of specific update functions that tell the UI exactly what changed.
      
      This improves the efficiency of various handlers. Also fixes problems with mined transactions not showing up until restart.
      
      The following notifications were added:
      
      - `NotifyBlocksChanged`: Block chain changed
      - `NotifyKeyStoreStatusChanged`: Wallet status (encrypted, locked) changed.
      - `NotifyAddressBookChanged`: Address book entry changed.
      - `NotifyTransactionChanged`: Wallet transaction added, removed or updated.
      - `NotifyNumConnectionsChanged`: Number of connections changed.
      - `NotifyAlertChanged`: New, updated or cancelled alert. As this finally makes it possible for the UI to know when a new alert arrived, it can be shown as OS notification.
      
      These notifications could also be useful for RPC clients. However, currently, they are ignored in bitcoind (in noui.cpp).
      
      Also brings back polling with timer for numBlocks in ClientModel. This value updates so frequently during initial download that the number of signals clogs the UI thread and causes heavy CPU usage. And after initial block download, the value changes so rarely that a delay of half a second until the UI updates is unnoticable.
      ff502565
  22. 18 May, 2012 2 commits
  23. 14 May, 2012 1 commit
  24. 22 Apr, 2012 1 commit
    • Jeff Garzik's avatar
      Prefer 'unsigned int' for loop index variables tested against ::size() · db7d3d8b
      Jeff Garzik authored
      C++ STL ::size() generally returns unsigned, which implies that "int idx"
      style of loop variable will generate a signed-vs-unsigned comparison warning
      when testing the loop exit condition "idx < blah.size()"
      
      Update areas of the bitcoin code where loop variables may be more properly and
      correctly defined as unsigned.
      db7d3d8b