battlmonstr 2793ef6ec1
polygon: flatten redundant packages (#9241)
* move mocks to the owner packages
* squash single file packages
* move types to more appropriate files
* remove unused mocks
2024-01-16 09:23:02 +01:00

16 lines
243 B
Go

package generics
import (
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon/core/types"
)
func Empty[T any]() (t T) {
return
}
type Response struct {
Headers []*types.Header
Hashes []libcommon.Hash
}