Skip to content

Commit

Permalink
rename simapp to zkgovapp
Browse files Browse the repository at this point in the history
  • Loading branch information
anilcse committed Dec 11, 2024
1 parent d916d3b commit 985991c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
BINDIR ?= $(GOPATH)/bin
BUILDDIR ?= $(CURDIR)/build
SIMAPP = ./simapp
MOCKS_DIR = $(CURDIR)/tests/mocks
HTTPS_GIT := https://github.com/cosmos/cosmos-sdk.git
DOCKER := $(shell which docker)
Expand Down Expand Up @@ -185,13 +184,13 @@ build-docs:
### Tests & Simulation ###
###############################################################################

# make init-simapp initializes a single local node network
# make init-zkgovapp initializes a single local node network
# it is useful for testing and development
# Usage: make install && make init-simapp && zkappd start
# Warning: make init-simapp will remove all data in simapp home directory
init-simapp:
rm -rf ~/.zkapp/
bash ./scripts/init-simapp.sh
# Usage: make install && make init-zkgovapp && zkappd start
# Warning: make init-zkgovapp will remove all data in zkgovapp home directory
init-zkgovapp:
rm -rf ~/.zkgovapp/
bash ./scripts/init-zkgovapp.sh
zkappd start

test: test-unit
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ make install
Initialize and start a local testnet.

1. **Initialize and Start the Chain:**
Modify the `scripts/init-simapp.sh` script according to your requirements.
`make init-simapp` will the run chain.
Modify the `scripts/init-zkgovapp.sh` script according to your requirements.
`make init-zkgovapp` will the run chain.
```bash
make init-simapp
make init-zkgovapp
```


Expand Down
File renamed without changes.

0 comments on commit 985991c

Please sign in to comment.