aboutsummaryrefslogtreecommitdiff
path: root/coreth.go
diff options
context:
space:
mode:
Diffstat (limited to 'coreth.go')
-rw-r--r--coreth.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/coreth.go b/coreth.go
index 5c739c1..0f65ca9 100644
--- a/coreth.go
+++ b/coreth.go
@@ -46,12 +46,11 @@ func NewETHChain(config *eth.Config, etherBase *common.Address) *ETHChain {
}
func (self *ETHChain) Start() {
- //utils.StartNode(stack)
self.backend.StartMining(0)
}
func (self *ETHChain) Stop() {
- self.backend.Stop()
+ self.backend.StopPart()
}
func (self *ETHChain) AddRemoteTxs(txs []*types.Transaction) []error {