You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@echo "${COLOR_CYAN} 🐳 Building local ${COLOR_RESET}docker${COLOR_CYAN} image${COLOR_RESET}"
188
+
@$(TOOL_HEIGHLINER_BIN) build -c axone --local
189
+
185
190
$(ENVIRONMENTS_TARGETS):
186
191
@GOOS=$(word 3, $(subst -, ,$@));\
187
192
GOARCH=$(word 4, $(subst -, ,$@)); \
@@ -218,7 +223,7 @@ test-go: $(TOOL_TPARSE_BIN) build ## Pass the test for the go source code
218
223
@go test -v -coverprofile ./target/coverage.txt ./... -json |$(TOOL_TPARSE_BIN)
219
224
220
225
## Chain:
221
-
chain-init: build ## Initialize the blockchain with default settings.
226
+
chain-init: build-go## Initialize the blockchain with default settings.
222
227
@echo "${COLOR_CYAN} 🛠️ Initializing chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} under ${COLOR_YELLOW}${CHAIN_HOME}${COLOR_RESET}"
223
228
224
229
@rm -rf "${CHAIN_HOME}"; \
@@ -250,7 +255,7 @@ chain-init: build ## Initialize the blockchain with default settings.
250
255
${CHAIN_BINARY} genesis collect-gentxs \
251
256
--home "${CHAIN_HOME}"
252
257
253
-
chain-start: build ## Start the blockchain with existing configuration (see chain-init)
258
+
chain-start: build-go## Start the blockchain with existing configuration (see chain-init)
254
259
@echo "${COLOR_CYAN} 🛠️ Starting chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} with configuration ${COLOR_YELLOW}${CHAIN_HOME}${COLOR_RESET}";\
255
260
${CHAIN_BINARY} start --moniker ${CHAIN_MONIKER}\
256
261
--home ${CHAIN_HOME}
@@ -259,14 +264,14 @@ chain-stop: ## Stop the blockchain
259
264
@echo "${COLOR_CYAN} ✋️ Stopping chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} with configuration ${COLOR_YELLOW}${CHAIN_HOME}${COLOR_RESET}"
260
265
@killall axoned
261
266
262
-
chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to the given TO_VERSION.
267
+
chain-upgrade: build-go## Test the chain upgrade from the given FROM_VERSION to the given TO_VERSION.
263
268
@echo "${COLOR_CYAN} ⬆️ Upgrade the chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} from ${COLOR_YELLOW}${FROM_VERSION}${COLOR_RESET}${COLOR_CYAN} to ${COLOR_YELLOW}${TO_VERSION}${COLOR_RESET}"
0 commit comments