1. 21 12月, 2017 11 次提交
  2. 20 12月, 2017 3 次提交
  3. 19 12月, 2017 3 次提交
    • A
      console: create datadir at startup (#15700) · 50df2b78
      Armin Braun 提交于
      Fixes #15672 by creating the datadir when creating the
      console. This prevents failing to save the history if no datadir
      exists.
      50df2b78
    • J
      swarm: bzz-list, bzz-raw and bzz-immutable schemes (#15667) · c786f753
      Janoš Guljaš 提交于
      * swarm/api: url scheme bzz-list for getting list of files from manifest
      
      Replace query parameter list=true for listing all files contained
      in a swarm manifest with a new URL scheme bzz-list.
      
      * swarm: replaace bzzr and bzzi schemes with bzz-raw and bzz-immutable
      
      New URI Shemes are added and old ones are deprecated, but not removed.
      Old Schemes bzzr and bzzi are functional for backward compatibility.
      
      * swarm/api: completely remove bzzr and bzzi schemes
      
      Remove old schemes in favour of bzz-raw and
      bzz-immutable.
      
      * swarm/api: revert "completely remove bzzr and bzzi schemes"
      
      Keep bzzr and bzzi schemes for backward compatibility. At least
      until 0.3 swarm release.
      c786f753
    • P
      Merge pull request #15693 from zsfelfoldi/wait_nopeers · 7f9d94fe
      Péter Szilágyi 提交于
      contracts/release: do not print error log if les backend has no peers
      7f9d94fe
  4. 18 12月, 2017 8 次提交
  5. 16 12月, 2017 1 次提交
  6. 15 12月, 2017 4 次提交
  7. 14 12月, 2017 2 次提交
  8. 13 12月, 2017 5 次提交
  9. 12 12月, 2017 3 次提交
    • H
      cmd/swarm: add config file (#15548) · 32516c76
      holisticode 提交于
      This commit adds a TOML configuration option to swarm. It reuses
      the TOML configuration structure used in geth with swarm
      customized items.
      
      The commit:
      
      * Adds a "dumpconfig" command to the swarm executable which
        allows printing the (default) configuration to stdout, which
        then can be redirected to a file in order to customize it.
      * Adds a "--config <file>" option to the swarm executable which will
        allow to load a configuration file in TOML format from the
        specified location in order to initialize the Swarm node The
        override priorities are like follows: environment variables
        override command line arguments override config file override
        default config.
      32516c76
    • F
      crypto: fix error check in toECDSA (#15632) · 1a32bdf9
      Felix Lange 提交于
      With this change,
      
          key, err := crypto.HexToECDSA("000000...")
          
      returns nil key and an error instead of a non-nil key with nil X
      and Y inside. Issue found by @guidovranken.
      1a32bdf9
    • F
      rlp: fix string size check in readKind (#15625) · 2499b1b1
      Felix Lange 提交于
      Issue found by @guidovranken
      2499b1b1