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
+
180
190
$(ENVIRONMENTS_TARGETS):
181
191
@GOOS=$(word 3, $(subst -, ,$@));\
182
192
GOARCH=$(word 4, $(subst -, ,$@)); \
@@ -213,7 +223,7 @@ test-go: $(TOOL_TPARSE_BIN) build ## Pass the test for the go source code
213
223
@go test -v -coverprofile ./target/coverage.txt ./... -json |$(TOOL_TPARSE_BIN)
214
224
215
225
## Chain:
216
-
chain-init: build ## Initialize the blockchain with default settings.
226
+
chain-init: build-go## Initialize the blockchain with default settings.
217
227
@echo "${COLOR_CYAN} 🛠️ Initializing chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} under ${COLOR_YELLOW}${CHAIN_HOME}${COLOR_RESET}"
218
228
219
229
@rm -rf "${CHAIN_HOME}"; \
@@ -245,7 +255,7 @@ chain-init: build ## Initialize the blockchain with default settings.
245
255
${CHAIN_BINARY} genesis collect-gentxs \
246
256
--home "${CHAIN_HOME}"
247
257
248
-
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)
249
259
@echo "${COLOR_CYAN} 🛠️ Starting chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} with configuration ${COLOR_YELLOW}${CHAIN_HOME}${COLOR_RESET}";\
250
260
${CHAIN_BINARY} start --moniker ${CHAIN_MONIKER}\
251
261
--home ${CHAIN_HOME}
@@ -254,14 +264,14 @@ chain-stop: ## Stop the blockchain
254
264
@echo "${COLOR_CYAN} ✋️ Stopping chain ${COLOR_RESET}${CHAIN}${COLOR_CYAN} with configuration ${COLOR_YELLOW}${CHAIN_HOME}${COLOR_RESET}"
255
265
@killall axoned
256
266
257
-
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.
258
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