From 02ff41a738b2efaf59869677b7727573479e607b Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Mon, 16 Dec 2024 15:35:49 +0700 Subject: [PATCH] add comment for tmplError struct and remove unused v2 backend interface --- accounts/abi/bind/template.go | 2 ++ accounts/abi/bind/v2/backend.go | 37 --------------------------------- 2 files changed, 2 insertions(+), 37 deletions(-) delete mode 100644 accounts/abi/bind/v2/backend.go diff --git a/accounts/abi/bind/template.go b/accounts/abi/bind/template.go index 7481bf06f6..be941d0114 100644 --- a/accounts/abi/bind/template.go +++ b/accounts/abi/bind/template.go @@ -64,6 +64,8 @@ type tmplEvent struct { Normalized abi.Event // Normalized version of the parsed fields } +// tmplError is a wrapper around an abi.Error that contains a few preprocessed +// and cached data fields. type tmplError struct { Original abi.Error Normalized abi.Error diff --git a/accounts/abi/bind/v2/backend.go b/accounts/abi/bind/v2/backend.go deleted file mode 100644 index 4f20c89e18..0000000000 --- a/accounts/abi/bind/v2/backend.go +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright 2024 The go-ethereum Authors -// This file is part of the go-ethereum library. -// -// The go-ethereum library is free software: you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// The go-ethereum library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . - -package v2 - -import ( - "context" - "math/big" - - "github.com/ethereum/go-ethereum" - "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/core/types" -) - -type BackendV2 interface { - SuggestGasPrice(ctx context.Context) (*big.Int, error) - PendingCodeAt(ctx context.Context, account common.Address) ([]byte, error) - PendingNonceAt(ctx context.Context, account common.Address) (uint64, error) - SubscribeFilterLogs(ctx context.Context, q ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error) - HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error) - SendTransaction(ctx context.Context, tx *types.Transaction) error - SuggestGasTipCap(ctx context.Context) (*big.Int, error) - EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) -}