diff --git a/TECHNICAL-SETUP.md b/TECHNICAL-SETUP.md index dc8b1f8..199f1f3 100644 --- a/TECHNICAL-SETUP.md +++ b/TECHNICAL-SETUP.md @@ -68,7 +68,7 @@ Run `make test-all` command to run tests. ## Localnet -To start a local blockchain, you can simply run the following command. The command uses Ignite CLI to start a local blockchain node with automatic reloading. If you don't have Starport set up in your local machine, see this [install guide](https://docs.ignite.com/#install-starport) to install it. +To start a local blockchain, you can simply run the following command. The command uses Ignite CLI to start a local blockchain node with automatic reloading. If you don't have Ignite set up in your local machine, see this [install guide](https://docs.ignite.com/#install-starport) to install it. ```bash make localnet diff --git a/app/sim_test.go b/app/sim_test.go index 9c63538..08e5a37 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -60,7 +60,7 @@ func interBlockCacheOpt() func(*baseapp.BaseApp) { } // BenchmarkSimulation run the chain simulation -// Running using starport command: +// Running using ignite command: // `ignite chain simulate -v --numBlocks 200 --blockSize 50` // Running as go benchmark test: // `go test -benchmem -run=^$ -bench ^BenchmarkSimulation ./app -NumBlocks=200 -BlockSize 50 -Commit=true -Verbose=true -Enabled=true`