aboutsummaryrefslogtreecommitdiffstats
path: root/vendor
Commit message (Collapse)AuthorAgeFilesLines
* cmd/puppeth, vendor: update ssh, manage server keys (#14398)Péter Szilágyi2017-05-0314-266/+626
|
* cmd/geth: add --config file flag (#13875)Felix Lange2017-04-1216-0/+5431
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * p2p/discover, p2p/discv5: add marshaling methods to Node * p2p/netutil: make Netlist decodable from TOML * common/math: encode nil HexOrDecimal256 as 0x0 * cmd/geth: add --config file flag * cmd/geth: add missing license header * eth: prettify Config again, fix tests * eth: use gasprice.Config instead of duplicating its fields * eth/gasprice: hide nil default from dumpconfig output * cmd/geth: hide genesis block in dumpconfig output * node: make tests compile * console: fix tests * cmd/geth: make TOML keys look exactly like Go struct fields * p2p: use discovery by default This makes the zero Config slightly more useful. It also fixes package node tests because Node detects reuse of the datadir through the NodeDatabase. * cmd/geth: make ethstats URL settable through config file * cmd/faucet: fix configuration * cmd/geth: dedup attach tests * eth: add comment for DefaultConfig * eth: pass downloader.SyncMode in Config This removes the FastSync, LightSync flags in favour of a more general SyncMode flag. * cmd/utils: remove jitvm flags * cmd/utils: make mutually exclusive flag error prettier It now reads: Fatal: flags --dev, --testnet can't be used at the same time * p2p: fix typo * node: add DefaultConfig, use it for geth * mobile: add missing NoDiscovery option * cmd/utils: drop MakeNode This exposed a couple of places that needed to be updated to use node.DefaultConfig. * node: fix typo * eth: make fast sync the default mode * cmd/utils: remove IPCApiFlag (unused) * node: remove default IPC path Set it in the frontends instead. * cmd/geth: add --syncmode * cmd/utils: make --ipcdisable and --ipcpath mutually exclusive * cmd/utils: don't enable WS, HTTP when setting addr * cmd/utils: fix --identity
* cmd/puppeth: your Ethereum private network manager (#13854)Péter Szilágyi2017-04-1148-0/+17078
|
* .travis, build: autodelete old unstable archives (#13867)Péter Szilágyi2017-04-0664-1116/+7695
| | | | | | | | This commit adds a build step to travis to auto-delete unstable archives older than 14 days (our regular release schedule) from Azure via ci.go purge. The commit also pulls in the latest Azure storage code, also switching over from the old import path (github.com/Azure/azure-sdk-for-go) to the new split one (github.com/Azure/azure-storage-go).
* swarm/api: support mounting manifests via FUSE (#3690)Zahoor Mohamed2017-03-2334-0/+6310
|
* all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-234-1/+535
| | | | | | | | | | There is no need to depend on the old context package now that the minimum Go version is 1.7. The move to "context" eliminates our weird vendoring setup. Some vendored code still uses golang.org/x/net/context and it is now vendored in the normal way. This change triggered new vet checks around context.WithTimeout which didn't fire with golang.org/x/net/context.
* crypto, pow, vendor: hash optimizations, mmap ethashPéter Szilágyi2017-03-098-0/+369
|
* all: finish integrating Go ethash, delete C++ vendorPéter Szilágyi2017-03-0910-653/+0
|
* vendor: update HID library for glibc < v2.17 buildPéter Szilágyi2017-02-276-14/+49
|
* all: blidly swap out glog to our log15, logs need reworkPéter Szilágyi2017-02-231-13/+12
|
* log, vendor: vendor in log15 inline into our codebasePéter Szilágyi2017-02-234-0/+406
|
* Merge pull request #3681 from karalabe/usb-hidapiNick Johnson2017-02-2079-1688/+5621
|\ | | | | accounts/usbwallet: swap karalabe/gousb to karalabe/hid
| * accounts/usbwallet, vendor: use hidapi instead of libusb directlyPéter Szilágyi2017-02-1779-1688/+5621
| |
* | crypto: add btcec fallback for sign/recover without cgo (#3680)Felix Lange2017-02-1814-0/+3678
|/ | | | | | | | | | | * vendor: add github.com/btcsuite/btcd/btcec * crypto: add btcec fallback for sign/recover without cgo This commit adds a non-cgo fallback implementation of secp256k1 operations. * crypto, core/vm: remove wrappers for sha256, ripemd160
* vendor: update dependencies with github.com/kardianos/govendorFelix Lange2017-02-16167-6279/+3390
|
* vendor: pull in support for USB devices via libusb/gousbPéter Szilágyi2017-02-1362-0/+32571
|
* vendor: update all dependencies except Azure SDKFelix Lange2017-01-11128-1008/+14027
| | | | | The Azure SDK doesn't support Go 1.5 anymore. We can't upgrade it until Go 1.8 comes out.
* les: light client protocol and APIZsolt Felfoldi2016-11-0911-0/+465
|
* vendor: update github.com/peterh/linerFelix Lange2016-11-047-77/+130
|
* vendor: pull in azure sdk and openpgp signerPéter Szilágyi2016-11-0355-19/+11197
|
* Godeps, vendor: convert dependency management to trash (#3198)Péter Szilágyi2016-10-29798-0/+402364
This commit converts the dependency management from Godeps to the vendor folder, also switching the tool from godep to trash. Since the upstream tool lacks a few features proposed via a few PRs, until those PRs are merged in (if), use github.com/karalabe/trash. You can update dependencies via trash --update. All dependencies have been updated to their latest version. Parts of the build system are reworked to drop old notions of Godeps and invocation of the go vet command so that it doesn't run against the vendor folder, as that will just blow up during vetting. The conversion drops OpenCL (and hence GPU mining support) from ethash and our codebase. The short reasoning is that there's noone to maintain and having opencl libs in our deps messes up builds as go install ./... tries to build them, failing with unsatisfied link errors for the C OpenCL deps. golang.org/x/net/context is not vendored in. We expect it to be fetched by the user (i.e. using go get). To keep ci.go builds reproducible the package is "vendored" in build/_vendor.