Compare commits

...

1 Commits

Author SHA1 Message Date
William Banfield
b1b6b0b1a3 remove all tx generation in runner 2021-09-13 16:29:14 -04:00

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