fixed lint

This commit is contained in:
Jared Wasinger 2025-07-08 15:38:45 +09:00
parent 0729d2a99e
commit ee4c97193b
2 changed files with 5 additions and 1 deletions

View file

@ -4,7 +4,7 @@
package {{.Package}}
import (
"context"
"context"
"math/big"
"strings"
"time"

View file

@ -75,6 +75,10 @@ func (mt *mockTransactor) SendTransaction(ctx context.Context, tx *types.Transac
return nil
}
func (mt *mockTransactor) TransactionByHash(ctx context.Context, hash common.Hash) (*types.Transaction, bool, error) {
return nil, false, nil
}
type mockCaller struct {
codeAtBlockNumber *big.Int
callContractBlockNumber *big.Int