Skip to content

fix(fab3): GetTransactionReceipt leaks EVM logs from MVCC-invalidated transactions #160

fix(fab3): GetTransactionReceipt leaks EVM logs from MVCC-invalidated transactions

fix(fab3): GetTransactionReceipt leaks EVM logs from MVCC-invalidated transactions #160

Workflow file for this run

#
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
name: Lint
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install lint utilities
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.5.0
golangci-lint --version
- name: Run lint
run: |
git fetch origin main:refs/remotes/origin/main
make lint