Compare commits

...

5 Commits

Author SHA1 Message Date
Callum Waters
6c9eaa1471 Merge branch 'master' into conr2d/doc-go-built-in 2021-08-27 15:19:14 +02:00
Jeeyong Um
a90149aca1 Merge branch 'master' into conr2d/doc-go-built-in 2021-08-25 11:05:40 +09:00
Jeeyong Um
02e5a34c0b docs: remove return code in normal case from go built-in example 2021-08-20 10:59:15 +09:00
Jeeyong Um
ee2c60a373 Revert "docs: fix graceful shutdown in go built-in example"
This reverts commit cbf5511b02.
2021-08-20 10:58:34 +09:00
Jeeyong Um
cbf5511b02 docs: fix graceful shutdown in go built-in example 2021-08-19 21:26:50 +09:00

View File

@@ -388,7 +388,6 @@ func main() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
<-c
os.Exit(0)
}
func newTendermint(app abci.Application, configFile string) (*nm.Node, error) {
@@ -564,7 +563,6 @@ defer func() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
<-c
os.Exit(0)
```
## 1.5 Getting Up and Running