Skip to content

Commit

Permalink
fix on plugin file
Browse files Browse the repository at this point in the history
  • Loading branch information
bizk committed Sep 11, 2023
1 parent 9035e83 commit de3c48a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rosetta-cli-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/cosmos-hub/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

func InitZone() {
config := sdk.GetConfig()
prefix := "evmos"
prefix := "cosmos-hub"
config.SetBech32PrefixForAccount(prefix, prefix+"pub")
}

Expand Down

0 comments on commit de3c48a

Please sign in to comment.