Commit befde97c authored by D's avatar D Committed by GitHub

Fix: Remove not necessary "/api" (and bump verifier version) (#792)

As per issue in blockscout,
[here](https://github.com/blockscout/blockscout/issues/10869#issuecomment-2395050605)
is the solution which solved the verification problem.

PS: Also bumped the blockscout version itself. (Tested.)
Signed-off-by: default avatarD <51912515+adaki2004@users.noreply.github.com>
Co-authored-by: default avatarKeszey Dániel <keszeyd@MacBook-Pro.local>
parent 43edfd5a
......@@ -2,8 +2,8 @@ shared_utils = import_module("../shared_utils/shared_utils.star")
constants = import_module("../package_io/constants.star")
postgres = import_module("github.com/kurtosis-tech/postgres-package/main.star")
IMAGE_NAME_BLOCKSCOUT = "blockscout/blockscout:6.7.2"
IMAGE_NAME_BLOCKSCOUT_VERIF = "ghcr.io/blockscout/smart-contract-verifier:v1.6.0"
IMAGE_NAME_BLOCKSCOUT = "blockscout/blockscout:6.8.0"
IMAGE_NAME_BLOCKSCOUT_VERIF = "ghcr.io/blockscout/smart-contract-verifier:v1.9.0"
SERVICE_NAME_BLOCKSCOUT = "blockscout"
......@@ -67,7 +67,7 @@ def launch_blockscout(
)
verif_service_name = "{}-verif".format(SERVICE_NAME_BLOCKSCOUT)
verif_service = plan.add_service(verif_service_name, config_verif)
verif_url = "http://{}:{}/api".format(
verif_url = "http://{}:{}/".format(
verif_service.hostname, verif_service.ports["http"].number
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment