1. 02 Mar, 2017 2 commits
  2. 01 Mar, 2017 2 commits
  3. 28 Feb, 2017 13 commits
  4. 27 Feb, 2017 16 commits
  5. 26 Feb, 2017 1 commit
    • Felix Lange's avatar
      common: move big integer math to common/math (#3699) · 5c8fe28b
      Felix Lange authored
      * common: remove CurrencyToString
      
      Move denomination values to params instead.
      
      * common: delete dead code
      
      * common: move big integer operations to common/math
      
      This commit consolidates all big integer operations into common/math and
      adds tests and documentation.
      
      There should be no change in semantics for BigPow, BigMin, BigMax, S256,
      U256, Exp and their behaviour is now locked in by tests.
      
      The BigD, BytesToBig and Bytes2Big functions don't provide additional
      value, all uses are replaced by new(big.Int).SetBytes().
      
      BigToBytes is now called PaddedBigBytes, its minimum output size
      parameter is now specified as the number of bytes instead of bits. The
      single use of this function is in the EVM's MSTORE instruction.
      
      Big and String2Big are replaced by ParseBig, which is slightly stricter.
      It previously accepted leading zeros for hexadecimal inputs but treated
      decimal inputs as octal if a leading zero digit was present.
      
      ParseUint64 is used in places where String2Big was used to decode a
      uint64.
      
      The new functions MustParseBig and MustParseUint64 are now used in many
      places where parsing errors were previously ignored.
      
      * common: delete unused big integer variables
      
      * accounts/abi: replace uses of BytesToBig with use of encoding/binary
      
      * common: remove BytesToBig
      
      * common: remove Bytes2Big
      
      * common: remove BigTrue
      
      * cmd/utils: add BigFlag and use it for error-checked integer flags
      
      While here, remove environment variable processing for DirectoryFlag
      because we don't use it.
      
      * core: add missing error checks in genesis block parser
      
      * common: remove String2Big
      
      * cmd/evm: use utils.BigFlag
      
      * common/math: check for 256 bit overflow in ParseBig
      
      This is supposed to prevent silent overflow/truncation of values in the
      genesis block JSON. Without this check, a genesis block that set a
      balance larger than 256 bits would lead to weird behaviour in the VM.
      
      * cmd/utils: fixup import
      5c8fe28b
  6. 24 Feb, 2017 2 commits
  7. 23 Feb, 2017 4 commits
    • gluk256's avatar
      whisper: expiry refactoring (#3706) · 11539030
      gluk256 authored
      11539030
    • Péter Szilágyi's avatar
      cmd/geth: drop upgradedb subcommand since it's unfeasible · aca066f3
      Péter Szilágyi authored
      This command was meant as a hackish way to upgrade our chain database way back
      when nobody cared for live updates and the size of the database along with its
      import times was small. With the current database weighing hundreds of GBs and
      processing times of many days, this command is just ludicrous.
      aca066f3
    • Péter Szilágyi's avatar
      cmd/ethtest: drop the manual test tool in favor of hive · 5ee00209
      Péter Szilágyi authored
      All the state and block tests are ran as part of our CU builds internally, as
      well as have been added to hive black-box tests. As such, there is no reason for
      maintaining an extra standalone tool.
      5ee00209
    • Péter Szilágyi's avatar
      cmd/gethrpctest: ethereum/rpc-tests is deprecated · e7bdb007
      Péter Szilágyi authored
      Only ethereum/rpc-tests used this command, which hasn't been maintained for over
      a year now, a lot of tests failing. What's left of it was moved underneath hive,
      which can run the entire test against a black-box geth without special commands.
      
      Also a new RPC test suite is being added which is also based on black box tests,
      not needing special commands any more.
      e7bdb007