Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.4.x #20

Merged
merged 11 commits into from
Nov 5, 2019
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ script:
deploy:
provider: releases
api_key:
secure: "jBbGdRNt1t8yYdvdYS/kDpzAZe32Xr4AbwJjnxyGKw3S3gsY64IV2GAEcpWnQA5+wPNprGc7YhcQZv8OfzlVoSA6EfEsFOe8ZIG1Qspq1dA+HqcrwxyOS2t0FcmOqdpmdsv+NXBpxO+RE0ukT5OrZO+2HM8dw9XPO8aEuAfKOAhSdW30blRzu/Yo2bBBIh/WA//TFKiOz/UrAv25Y0Jws6BXY/A8eJkP5KiAVnEsrSKpWOYZfXwUlVLxZ8edm1NCm/QIflO2K8CKTFYIFJ2YbdvCx1xE7soWIY4X3UxUea3svjax4/E/HI+qYmKoJPQzSLgOk21DzLH96MetO9TicPX9Bd5VhMHEcp76dLpEpcu1pS67v3u4nrFX8fw12xmZ40pvwAzUsng/e6QtFvudcQMNS/cSb+YsP4/akJkqg6vA0A66yMT8OY8AiPNfJZbiZA9a9waLmKGwjwYDdKkYDdssNdHmnUuzFpEDmESjo+VDIbTnglKwX5bq4BiGrDsdqgk93Qz4xY1VC3ItSX72iGIB74INlUiNQ9TDRVU66OTSqC9/XLSWZjwYWupXq2UpML0I47wtduIyEIdc/HcbQjqZRO/+L4/IduG0XBx5vlbTfLz+OpVPM9FxiJBvuIiOPNz1/O10WomMx5I0rNZOCDmeROR8OQgKs5siWA3ceoU="
secure: "RF1x7wC+9wEFNwOVnuTYtKDdaPSRtKlPHZxuz7RkmJK6kpYcB42cBuRjX7eceW350GKNUcd0lD4Me9iyy2KBMhtsLJVDjjhRg4StyQJ9Iyn/CteY4bFWwq6WtW1KTpbs1y6fS68rgm25XWJlyZ6fdm99/hZ1XFkE1bFuaEYIoDyVJzeVgvn8iRrUONzRCzz5g3UbE8RJPkbcfnunSdbeIowZVPJMtnN9GVuvKFLyJT+g8p+nuVC/g0xhepWh5bMSXdoHrRai1rm0nZ2i23m+DYKfU8EZfl29Imc7qfWKAtXmWatwKsXtX6aWFaTYyKEIBJqCVrjet1f23EvcSa4LfgusRtTs+7miCTX0VxYDzRY4/ggr6/Xlr7dS46Yg7v99djW8Xrue/2tYARXWTwRXbDT/AiewWFLHaaodNIJidjSo+sMew1pXQRTs7Th3a4YACAWV90W2joS606LhbVhuAP3VDlN1nObsI8Tz8is1TNUD8/Sq8CxZg1uhQZkN8zKyRHlsrxddxW/rxeh+RUSQPOaF/ZsRaqrPoIAripw0harzWFJP+Zyy+sTTVVcovkPHrYji9TpKZ2p7I7Td9BVULdQyg5bhVXWpROlaDFV+/KzT/bjiVMSx9nsSp2IH9SkDB2Q4fHe8fJNMIqO+GHzOno+vF11cKj1aOkSqa4WVcbQ="
file_glob: true
file: build/pkgs/*
skip_cleanup: true
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ RANDPA was inspired by [GRANDPA](https://github.com/w3f/consensus/blob/master/pd

We also provide some test and benchmarking tools, so you can actually run RANDPA on your own machine.

## Build Status

Branch|Build Status
---|---
Master|[![master](https://travis-ci.org/DaoCasino/DAObet.svg?branch=master)](https://travis-ci.org/DaoCasino/DAObet)
Develop|[![develop](https://travis-ci.org/DaoCasino/DAObet.svg?branch=develop)](https://travis-ci.org/DaoCasino/DAObet)

## Build

```bash
Expand Down
6 changes: 3 additions & 3 deletions run-node.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NODE_PATH=$HOME/.dao-node
NODE_IMAGE='daocasino/blockchain:v0.3.0'
NODE_IMAGE='daocasino/daobet:v0.4.0'
CONFIG_URL='https://explorer.daobet.org/config'

read -p "Node data dir: $NODE_PATH, do you want change it? (y/n) " resp
Expand Down Expand Up @@ -71,7 +71,7 @@ function run-dao-node() {
--network host \
--volume $NODE_PATH:/opt/dao:rw \
$NODE_IMAGE \
/opt/daobet/bin/daobet-node \
/usr/bin/daobet-node \
--config-dir=/opt/dao/config \
--genesis-json=/opt/dao/config/genesis.json \
--logconf=/opt/dao/config/logger.json \
Expand All @@ -83,7 +83,7 @@ function run-dao-wallet() {
docker run -d --network host \
--volume $NODE_PATH:/opt/dao:rw \
--name dao-wallet $NODE_IMAGE \
/opt/daobet/bin/daobet-wallet \
/usr/bin/daobet-wallet \
--http-server-address=127.0.0.1:8899 \
--http-alias=localhost:8899 \
--unlock-timeout=99999999 \
Expand Down