Use tendermint store to get Tx hashes instead of storing explicitly #3464
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compatibility Check | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
forward-compatibility: | |
name: forward-compatibility | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Check Latest Dependencies | |
run: | | |
git clone https://github.com/sei-protocol/sei-cosmos.git | |
git clone https://github.com/sei-protocol/sei-tendermint.git | |
git clone https://github.com/sei-protocol/sei-iavl.git | |
git clone https://github.com/sei-protocol/go-ethereum.git | |
go mod edit -replace github.com/cosmos/iavl=./sei-iavl | |
go mod edit -replace github.com/tendermint/tendermint=./sei-tendermint | |
go mod edit -replace github.com/cosmos/cosmos-sdk=./sei-cosmos | |
go mod edit -replace github.com/ethereum/go-ethereum=./go-ethereum | |
go mod tidy | |
make install |