File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ language: go
2
2
go :
3
3
- 1.4.2
4
4
before_install :
5
- - sudo add-apt-repository ppa:beineri/opt-qt541 -y
6
5
- sudo apt-get update -qq
7
6
- sudo apt-get install -yqq libgmp3-dev
8
7
install :
@@ -22,14 +21,12 @@ after_success:
22
21
- if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
23
22
env :
24
23
global :
25
- - PKG_CONFIG_PATH=/opt/qt54/lib/pkgconfig
26
- - LD_LIBRARY_PATH=/opt/qt54/lib
27
24
- secure : " U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64="
28
25
29
26
notifications :
30
27
webhooks :
31
28
urls :
32
29
- https://webhooks.gitter.im/e/e09ccdce1048c5e03445
33
- on_success : change # options: [always|never|change] default: always
34
- on_failure : always # options: [always|never|change] default: always
35
- on_start : false # default: false
30
+ on_success : change
31
+ on_failure : always
32
+ on_start : false
Original file line number Diff line number Diff line change @@ -44,11 +44,10 @@ Executables
44
44
Go Ethereum comes with several wrappers/executables found in
45
45
[ the ` cmd ` directory] ( https://github.com/ethereum/go-ethereum/tree/develop/cmd ) :
46
46
47
- * ` mist ` Official Ethereum Browser (ethereum GUI client)
48
47
* ` geth ` Ethereum CLI (ethereum command line interface client)
49
48
* ` bootnode ` runs a bootstrap node for the Discovery Protocol
50
- * ` ethtest ` test tool which runs with the [ tests] ( https://github.com/ethereum/testes ) suite:
51
- ` cat file | ethtest` .
49
+ * ` ethtest ` test tool which runs with the [ tests] ( https://github.com/ethereum/tests ) suite:
50
+ ` /path/to/test.json > ethtest --test BlockTests --stdin ` .
52
51
* ` evm ` is a generic Ethereum Virtual Machine: `evm -code 60ff60ff -gas
53
52
10000 -price 0 -dump` . See ` -h` for a detailed description.
54
53
* ` disasm ` disassembles EVM code: ` echo "6001" | disasm `
@@ -57,7 +56,7 @@ Go Ethereum comes with several wrappers/executables found in
57
56
Command line options
58
57
====================
59
58
60
- Both ` mist ` and ` geth ` can be configured via command line options, environment variables and config files.
59
+ ` geth ` can be configured via command line options, environment variables and config files.
61
60
62
61
To get the options available:
63
62
You can’t perform that action at this time.
0 commit comments