misc
Some checks failed
Test / Run unit tests (pull_request) Failing after 7m4s
Test / Run integration tests (pull_request) Failing after 7m5s

This commit is contained in:
Roy Crihfield 2023-09-11 17:51:05 +08:00
parent 2e496f3af2
commit 80c3540ddb
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ $(MOCKS_DIR)/gen_backend.go:
docker-image: mocks
docker build . -t "cerc/plugeth-statediff:local" \
--build-arg GIT_VDBTO_TOKEN=$(CERC_GO_AUTH_TOKEN)
--build-arg GIT_VDBTO_TOKEN
.PHONY: docker-image
# Local build

View File

@ -41,7 +41,7 @@ func LoadConfig(chainConfigPath string) (*params.ChainConfig, error) {
return nil, err
}
log.Debug(fmt.Sprintf("Using chain config from '%s'. Content: %+v", chainConfigPath, chainConfig))
log.Debug("Using chain config", "path", chainConfigPath, "content", chainConfig)
return chainConfig, nil
}