mirror of
https://github.com/tendermint/tendermint.git
synced 2026-08-22 07:06:14 +00:00
remove all tx generation in runner
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user