mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 05:46:32 +00:00
add param names
This commit is contained in:
@@ -33,9 +33,15 @@ func (p *Provider) Setup() error {
|
||||
}
|
||||
return nil
|
||||
}
|
||||
func (Provider) StartTendermint(_ context.Context, _ *e2e.Node) error { panic("unimplemented") }
|
||||
func (Provider) TerminateTendermint(_ context.Context, _ *e2e.Node) error { panic("unimplemented") }
|
||||
func (Provider) KillTendermint(_ context.Context, _ *e2e.Node) error { panic("unimplemented") }
|
||||
func (p Provider) StartTendermint(ctx context.Context, n *e2e.Node) error {
|
||||
panic("unimplemented")
|
||||
}
|
||||
func (p Provider) TerminateTendermint(ctx context.Context, n *e2e.Node) error {
|
||||
panic("unimplemented")
|
||||
}
|
||||
func (p Provider) KillTendermint(ctx context.Context, n *e2e.Node) error {
|
||||
panic("unimplemented")
|
||||
}
|
||||
|
||||
// dockerComposeBytes generates a Docker Compose config file for a testnet and returns the
|
||||
// file as bytes to be written out to disk.
|
||||
|
||||
Reference in New Issue
Block a user