aboutsummaryrefslogtreecommitdiff
path: root/coreth.go
diff options
context:
space:
mode:
Diffstat (limited to 'coreth.go')
-rw-r--r--coreth.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/coreth.go b/coreth.go
index 84a6b59..a164452 100644
--- a/coreth.go
+++ b/coreth.go
@@ -106,6 +106,10 @@ func (self *ETHChain) SetHead(hash common.Hash) error {
return self.backend.BlockChain().FastSyncCommitHead(hash)
}
+func (self *ETHChain) GetReceiptsByHash(hash common.Hash) types.Receipts {
+ return self.backend.BlockChain().GetReceiptsByHash(hash)
+}
+
type Key struct {
Address common.Address
PrivateKey *ecdsa.PrivateKey