From de3c48a57cfbbb76dfbab325f1a839bad97bbb5e Mon Sep 17 00:00:00 2001 From: bizk Date: Mon, 11 Sep 2023 15:00:03 -0300 Subject: [PATCH] fix on plugin file --- .github/workflows/rosetta-cli-test.yaml | 2 +- plugins/cosmos-hub/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rosetta-cli-test.yaml b/.github/workflows/rosetta-cli-test.yaml index 7449e83..93dfb57 100644 --- a/.github/workflows/rosetta-cli-test.yaml +++ b/.github/workflows/rosetta-cli-test.yaml @@ -36,7 +36,7 @@ jobs: - name: review run: cat ./plugins/cosmos-hub/main.go - name: Build Rosetta - run: make rosetta && make plugin && ./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8080" --grpc "localhost:9090 &" + run: go mod tidy && make rosetta && make plugin && ./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8080" --grpc "localhost:9090 &" run-rosetta-cli-tests: runs-on: ubuntu-latest needs: run-rosetta diff --git a/plugins/cosmos-hub/main.go b/plugins/cosmos-hub/main.go index 3e971b1..f0e07c5 100644 --- a/plugins/cosmos-hub/main.go +++ b/plugins/cosmos-hub/main.go @@ -15,7 +15,7 @@ import ( func InitZone() { config := sdk.GetConfig() - prefix := "evmos" + prefix := "cosmos-hub" config.SetBech32PrefixForAccount(prefix, prefix+"pub") }