Skip to content

Commit

Permalink
Fix: Remove not necessary "/api" (and bump verifier version) (#792)
Browse files Browse the repository at this point in the history
As per issue in blockscout,
[here](blockscout/blockscout#10869 (comment))
is the solution which solved the verification problem.

PS: Also bumped the blockscout version itself. (Tested.)

Signed-off-by: D <51912515+adaki2004@users.noreply.github.com>
Co-authored-by: Keszey Dániel <keszeyd@MacBook-Pro.local>
  • Loading branch information
adaki2004 and Keszey Dániel authored Oct 7, 2024
1 parent 43edfd5 commit befde97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/blockscout/blockscout_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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
)

Expand Down

0 comments on commit befde97

Please sign in to comment.