Skip to content

Commit

Permalink
Merge pull request #67 from hyperledger/feature/update-readme
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
MukhinAlexey authored Jun 10, 2018
2 parents 21bfce0 + a9e3062 commit 5a8f444
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hyperledger Iroha iOS library

## Please pay attention!!! Master branch of [this](https://github.com/soramitsu/iroha-ios) repository works with master branch of [Hyperledger Iroha repository](https://github.com/hyperledger/iroha) !!! Commands listed in readme file depends on branch!!!
### Please pay attention!!! Master branch of [this](https://github.com/soramitsu/iroha-ios) library works with develop branch of [Hyperledger Iroha](https://github.com/hyperledger/iroha) !!! Commands listed in this README.md file depends on Hyperledger Iroha branch!!!

This library was implemented in order to provide key generation and signing logic for queries and transactions passed to Hyperledger Iroha

Expand Down Expand Up @@ -78,20 +78,20 @@ Before starting you need to install the following software on you mac:
$docker volume create blockstore
```

4. Download Hyperledger Iroha (master branch):
4. Download Hyperledger Iroha (develop branch):
```
$git clone -b master https://github.com/hyperledger/iroha --depth=1
$git clone -b develop https://github.com/hyperledger/iroha --depth=1
```

5. Start Hyperledger Iroha (master branch):
5. Start Hyperledger Iroha (develop branch):
```
$docker run -it --name iroha \
-p 50051:50051 \
-v $(pwd)/iroha/example:/opt/iroha_data \
-v blockstore:/tmp/block_store \
--network=iroha-network \
--entrypoint=/bin/bash \
hyperledger/iroha:latest
hyperledger/iroha:develop
```

6. Launch Iroha Daemon:
Expand Down
2 changes: 1 addition & 1 deletion SwiftyIrohaExample/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ViewController: UIViewController {
// If you do not change ACCOUNT_NAME_TO_CREATE after first succesfull excecution then you will get an error
// Iroha won't let you to create two account with a same name, so please change it after success
// =====================================================================================
private final let ACCOUNT_NAME_TO_CREATE = "alex2"
private final let ACCOUNT_NAME_TO_CREATE = "alex"
private final let ADMIN_ACCOUNT_ID = "admin"
private final let TEST_DOMAIN_ID = "test"
private final let IROHA_ADDRESS = "127.0.0.1:50051"
Expand Down

0 comments on commit 5a8f444

Please sign in to comment.