Fix estimate_gas
result differs widely from the used_gas
(#1239)
#55
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: Editorconfig | |
on: | |
push: | |
branches: | |
- master | |
- 'polkadot-v**' | |
pull_request: | |
branches: | |
- master | |
- 'polkadot-v**' | |
jobs: | |
check: | |
name: 'Check editorconfig' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Submodules | |
run: git submodule update --init --recursive | |
- name: Init | |
run: | | |
wget https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.1.0/ec-linux-amd64.tar.gz | |
tar xvf ec-linux-amd64.tar.gz | |
chmod +x bin/ec-linux-amd64 | |
- name: Check | |
run: bin/ec-linux-amd64 |