Commit 0a25b054 authored by clabby's avatar clabby

Stub out rethdb receipt fetcher with `rethdb` build tag

parent 4aacef46
//go:build rethdb
package sources package sources
import ( import (
......
//go:build !rethdb
package sources
import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
)
// FetchRethReceipts fetches the receipts for the given block hash...
func FetchRethReceipts(dbPath string, blockHash *common.Hash) (types.Receipts, error) {
panic("unimplemented!")
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment