remove all tx generation in runner

This commit is contained in:
William Banfield
2021-09-13 16:29:14 -04:00
parent 816e9b0b49
commit b1b6b0b1a3
+8 -6
View File
@@ -57,12 +57,14 @@ func NewCLI() *CLI {
}
chLoadResult := make(chan error)
ctx, loadCancel := context.WithCancel(context.Background())
defer loadCancel()
go func() {
err := Load(ctx, cli.testnet, 1)
chLoadResult <- err
}()
_, loadCancel := context.WithCancel(context.Background())
/*
defer loadCancel()
go func() {
err := Load(ctx, cli.testnet, 1)
chLoadResult <- err
}()
*/
if err := Start(cli.testnet); err != nil {
return err