aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaweł Bylica <pawel.bylica@imapp.pl>2015-01-26 22:46:10 +0800
committerPaweł Bylica <pawel.bylica@imapp.pl>2015-01-26 22:46:10 +0800
commit5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a (patch)
treee4c15a89c7477c8ece7d09b0a32da4b2c689f844
parent94106cc41ff3795b9b13044f5625c2e1089795f5 (diff)
parent48083608b513d97d9db10bbfdabb6e5f8830f08a (diff)
downloadgo-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.tar
go-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.tar.gz
go-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.tar.bz2
go-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.tar.lz
go-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.tar.xz
go-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.tar.zst
go-tangerine-5d33d5a7d91721a7b41f86bdcce23d3e8c3d5a6a.zip
Merge remote-tracking branch 'upstream/develop' into evmjit
-rw-r--r--README.md26
-rw-r--r--core/chain_manager_test.go6
2 files changed, 19 insertions, 13 deletions
diff --git a/README.md b/README.md
index a824e9001..d6b0e312f 100644
--- a/README.md
+++ b/README.md
@@ -1,30 +1,27 @@
[![Bugs](https://badge.waffle.io/ethereum/go-ethereum.png?label=bug&title=Bugs)](https://waffle.io/ethereum/go-ethereum)
[![Stories in Ready](https://badge.waffle.io/ethereum/go-ethereum.png?label=ready&title=Ready)](https://waffle.io/ethereum/go-ethereum)
-[![Stories in
-Progress](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress)](http://waffle.io/ethereum/go-ethereum)
+[![Stories in Progress](https://badge.waffle.io/ethereum/go-ethereum.svg?label=in%20progress&title=In Progress)](http://waffle.io/ethereum/go-ethereum)
+[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ethereum/go-ethereum?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
-Ethereum
+
+Ethereum PoC-8
========
-[![Build
-Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20master%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20master%20branch/builds/-1) master [![Build
-Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20develop%20branch/builds/-1) develop
-[![Coverage Status](https://coveralls.io/repos/ethereum/go-ethereum/badge.png?branch=tests)](https://coveralls.io/r/ethereum/go-ethereum?branch=tests) tests
+* [![Build Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20master%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20master%20branch/builds/-1) master
+* [![Build Status](http://build.ethdev.com/buildstatusimage?builder=Linux%20Go%20develop%20branch)](http://build.ethdev.com:8010/builders/Linux%20Go%20develop%20branch/builds/-1) develop
+* [![Travis-ci](https://api.travis-ci.org/ethereum/go-ethereum.svg)](https://travis-ci.org/ethereum/go-ethereum) travis-ci
+* [![Coverage Status](https://coveralls.io/repos/ethereum/go-ethereum/badge.png?branch=tests)](https://coveralls.io/r/ethereum/go-ethereum?branch=tests)
Ethereum Go Client © 2014 Jeffrey Wilcke.
-Current state: Proof of Concept 0.8
-
-Ethereum is currently in its testing phase.
-
Build
=====
-To build Mist (GUI):
+Mist (GUI):
`go get github.com/ethereum/go-ethereum/cmd/mist`
-To build the node (CLI):
+Ethereum (CLI):
`go get github.com/ethereum/go-ethereum/cmd/ethereum`
@@ -49,6 +46,8 @@ Go Ethereum comes with several binaries found in
`cat file | ethtest`.
* `evm` is a generic Ethereum Virtual Machine: `evm -code 60ff60ff -gas
10000 -price 0 -dump`. See `-h` for a detailed description.
+* `rlpdump` converts a rlp stream to `interface{}`.
+* `peerserver` simple P2P (noi-ethereum) peer server.
General command line options
============================
@@ -125,3 +124,4 @@ expect you to write tests for me so I don't have to test your code
manually. (If you want to contribute by just writing tests that's fine
too!)
+
diff --git a/core/chain_manager_test.go b/core/chain_manager_test.go
index f382516b7..bc3a264d1 100644
--- a/core/chain_manager_test.go
+++ b/core/chain_manager_test.go
@@ -46,6 +46,8 @@ func insertChain(done chan bool, chainMan *ChainManager, chain types.Blocks, t *
}
func TestChainInsertions(t *testing.T) {
+ t.Skip() // travil fails.
+
db, _ := ethdb.NewMemDatabase()
chain1, err := loadChain("valid1", t)
@@ -86,6 +88,8 @@ func TestChainInsertions(t *testing.T) {
}
func TestChainMultipleInsertions(t *testing.T) {
+ t.Skip() // travil fails.
+
db, _ := ethdb.NewMemDatabase()
const max = 4
@@ -130,6 +134,8 @@ func TestChainMultipleInsertions(t *testing.T) {
}
func TestGetAncestors(t *testing.T) {
+ t.Skip() // travil fails.
+
db, _ := ethdb.NewMemDatabase()
var eventMux event.TypeMux
chainMan := NewChainManager(db, &eventMux)