aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2019-03-17 14:28:19 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:50:04 +0800
commit963c79c325e8f1c10321bb0c69ec32607c24d3ab (patch)
treed3bebdbff40faefda94fa99de15af99f6e6d6e37 /cmd
parent74f23bef7863264e7ade5ca916a2504f835196ae (diff)
downloaddexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.tar
dexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.tar.gz
dexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.tar.bz2
dexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.tar.lz
dexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.tar.xz
dexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.tar.zst
dexon-963c79c325e8f1c10321bb0c69ec32607c24d3ab.zip
dex: properly start and stop the block proposer module (#264)
Stop blockproposer in the Stop() method of node service so the process doens't hang.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gdex/main.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd/gdex/main.go b/cmd/gdex/main.go
index 3796691ee..9b51f5ab8 100644
--- a/cmd/gdex/main.go
+++ b/cmd/gdex/main.go
@@ -370,8 +370,5 @@ func startNode(ctx *cli.Context, stack *node.Node) {
if err := stack.Service(&dexon); err != nil {
utils.Fatalf("Dexon service not running: %v", err)
}
- if err := dexon.StartProposing(); err != nil {
- utils.Fatalf("Failed to string proposing: %v", err)
- }
}
}