shim in start and stop methods

This commit is contained in:
William Banfield
2022-11-30 17:50:27 -05:00
parent 0cbecba3d6
commit 85ff1f2211
2 changed files with 15 additions and 1 deletions
+3
View File
@@ -2,6 +2,7 @@ package docker
import (
"bytes"
"context"
"os"
"path/filepath"
"text/template"
@@ -32,6 +33,8 @@ func (p *Provider) Setup() error {
}
return nil
}
func (Provider) StartNode(_ context.Context, _ *e2e.Node) error { panic("unimplemented") }
func (Provider) StopNode(_ context.Context, _ *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.