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 0f65ca9..e769d06 100644
--- a/coreth.go
+++ b/coreth.go
@@ -53,6 +53,10 @@ func (self *ETHChain) Stop() {
self.backend.StopPart()
}
+func (self *ETHChain) GenBlock() {
+ self.backend.Miner().GenBlock()
+}
+
func (self *ETHChain) AddRemoteTxs(txs []*types.Transaction) []error {
return self.backend.TxPool().AddRemotes(txs)
}