From 46ea10afcdae0425019ee93611aaa1feb0aea7ff Mon Sep 17 00:00:00 2001 From: Victor Farazdagi Date: Wed, 28 Sep 2016 15:31:09 +0300 Subject: [PATCH 1/2] Note on reference LES server --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 7e8c09fef..3a2ce8b08 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,13 @@ - [How To Build](https://github.com/status-im/status-go/wiki/Build-Process-Explained) - [Notes on Bindings](https://github.com/status-im/status-go/wiki/Notes-on-Bindings) + +# LES protocol and referece server + +- In order for clients to sync/pull blockchain headers using LES protocol, the full LES server is required, for reference. +- We expose one such server (to be added using `admin.addPeer()` or as `static-nodes.json`): +```json +[ + "enode://4e2bb6b09aa34375ae2df23fa063edfe7aaec952dba972449158ae0980a4abd375aca3c06a519d4f562ff298565afd288a0ed165944974b2557e6ff2c31424de@138.68.73.175:30303" +] +``` From f67a304641eae83bba7b77578230ce77c5026e46 Mon Sep 17 00:00:00 2001 From: Victor Farazdagi Date: Wed, 28 Sep 2016 17:35:39 +0300 Subject: [PATCH 2/2] Adds build status --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 3a2ce8b08..5f64d23d3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ + + +branch | build status +-------|------------- +master | [![Build Status](https://travis-ci.org/status-im/status-go.svg?branch=master)](https://github.com/status-im/status-go/tree/master) +develop | [![Build Status](https://travis-ci.org/status-im/status-go.svg?branch=develop)](https://github.com/status-im/status-go/tree/develop) + # Status bindings for go-ethereum - [How To Build](https://github.com/status-im/status-go/wiki/Build-Process-Explained)