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") }