Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimrostafarian committed Jan 21, 2023
1 parent 86dc7e0 commit 08da90f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ benchmark:
### Local validator nodes using docker and docker-compose

testnet-init:
@if ! [ -f build/nodecluster/node0/fury/config/genesis.json ]; then docker run --rm -v $(CURDIR)/build:/home nimrostafarian:furyhub fury testnet --v 4 --output-dir /home/nodecluster --chain-id furyhub-test --keyring-backend test --starting-ip-address 192.168.10.2 ; fi
@if ! [ -f build/nodecluster/node0/fury/config/genesis.json ]; then docker run --rm -v $(CURDIR)/build:/home nimrostafarian/tessornetwork:fury.1 fury testnet --v 4 --output-dir /home/nodecluster --chain-id furyhub-test --keyring-backend test --starting-ip-address 192.168.10.2 ; fi
@echo "To install jq command, please refer to this page: https://stedolan.github.io/jq/download/"
@jq '.app_state.auth.accounts+= [{"@type":"/cosmos.auth.v1beta1.BaseAccount","address":"iaa1ljemm0yznz58qxxs8xyak7fashcfxf5lgl4zjx","pub_key":null,"account_number":"0","sequence":"0"}] | .app_state.bank.balances+= [{"address":"iaa1ljemm0yznz58qxxs8xyak7fashcfxf5lgl4zjx","coins":[{"denom":"ufury","amount":"1000000000000"}]}]' build/nodecluster/node0/fury/config/genesis.json > build/genesis_temp.json ;
@sudo cp build/genesis_temp.json build/nodecluster/node0/fury/config/genesis.json
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
furynode0:
container_name: furynode0
image: nimrostafarian:furyhub
image: nimrostafarian/tessornetwork:fury.1
ports:
- "26656-26657:26656-26657"
volumes:
Expand All @@ -15,7 +15,7 @@ services:

furynode1:
container_name: furynode1
image: nimrostafarian:furyhub
image: nimrostafarian/tessornetwork:fury.1
ports:
- "26659-26660:26656-26657"
volumes:
Expand All @@ -27,7 +27,7 @@ services:

furynode2:
container_name: furynode2
image: nimrostafarian:furyhub
image: nimrostafarian/tessornetwork:fury.1
ports:
- "26661-26662:26656-26657"
volumes:
Expand All @@ -39,7 +39,7 @@ services:

furynode3:
container_name: furynode3
image: nimrostafarian:furyhub
image: nimrostafarian/tessornetwork:fury.1
ports:
- "26663-26664:26656-26657"
volumes:
Expand Down

0 comments on commit 08da90f

Please sign in to comment.