From 817fa67a805203320caf4e5db4fa489e48b7f002 Mon Sep 17 00:00:00 2001 From: Zach Ramsay <zach.ramsay@gmail.com> Date: Fri, 2 Mar 2018 15:02:20 +0800 Subject: [PATCH] pr comments Signed-off-by: zramsay <zach@bluecollarcoding.ca> --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b79679d3..cd9db0bd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ | Master | [](https://circleci.com/gh/hyperledger/burrow/tree/master) | | Develop | [](https://circleci.com/gh/hyperledger/burrow/tree/develop) | -Hyperledger Burrow is a permissioned Ethereum smart-contract blockchain node built with <3 by Monax. It executes Ethereum smart contract code (Solidity) on a permissioned virtual machine. Burrow provides transaction finality and high transaction throughput on a proof-of-stake [Tendermint](https://tendermint.com) consensus engine. +Hyperledger Burrow is a permissioned Ethereum smart-contract blockchain node built with <3 by Monax. It executes Ethereum EVM smart contract code (usually written in [Solidity](https://solidity.readthedocs.io)) on a permissioned virtual machine. Burrow provides transaction finality and high transaction throughput on a proof-of-stake [Tendermint](https://tendermint.com) consensus engine. ## What is Burrow @@ -30,7 +30,7 @@ cd github.com/hyperledger/burrow make build ``` -This will put the the `burrow` and `burrow-client` binaries in ... +This will build the `burrow` and `burrow-client` binaries and put them in the `bin/` directory. They can be executed from there or put wherever is convenient. ## Usage @@ -49,8 +49,8 @@ burrow spec -p1 -f1 | burrow configure -s- -v0 which translates into: ``` -burrow spec --participant-accounts=1 --full-accounts=1 > accounts.json -burrow configure --genesis-spec=accounts.json --validator-index=0 > burrow.toml +burrow spec --participant-accounts=1 --full-accounts=1 > genesis-spec.json +burrow configure --genesis-spec=genesis-spec.json --validator-index=0 > burrow.toml ``` Once the `burrow.toml` has been created, we run: @@ -109,6 +109,7 @@ We welcome any and all contributions. Read the [contributing file](.github/CONTR You can find us on: - [Hyperledger Chat](https://chat.hyperledger.org) +- [Hyperledger Mailing List](https://lists.hyperledger.org/mailman/listinfo) - [here on Github](https://github.com/hyperledger/burrow/issues) ## Future work -- GitLab