fix import order

This commit is contained in:
maskpp 2024-09-20 18:44:10 +08:00
parent 3626e27973
commit e32d512cf3

View file

@ -19,11 +19,12 @@ package filters
import ( import (
"context" "context"
"errors" "errors"
"math/big"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/bloombits" "github.com/ethereum/go-ethereum/core/bloombits"
"github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/rpc" "github.com/ethereum/go-ethereum/rpc"
"math/big"
) )
// Filter can be used to retrieve and filter logs. // Filter can be used to retrieve and filter logs.