aboutsummaryrefslogtreecommitdiff
path: root/coreth.go
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2019-08-14 01:41:00 -0400
committerDeterminant <ted.sybil@gmail.com>2019-08-14 01:41:00 -0400
commit485da638c7b3ecd2e23299252848d99258fb6727 (patch)
tree8e6d1dbdc10653f90e4393d46c2df3aee1bab664 /coreth.go
parent592f21f5b97e5b1e714f194ae90ab83e6547cf41 (diff)
...
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 {