Skip to content

Commit

Permalink
wip: use db dir
Browse files Browse the repository at this point in the history
Signed-off-by: gfanton <[email protected]>
  • Loading branch information
gfanton committed Dec 20, 2024
1 parent de031ca commit a9bde35
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gno.land/pkg/integration/fork_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ func TestForkGnoland(t *testing.T) {
gnoRootDir := gnoenv.RootDir()

gnolandBuildDir := filepath.Join(tmpdir, "build")
gnolandDBDir := filepath.Join(tmpdir, "db")
gnolandBin := filepath.Join(gnolandBuildDir, "gnoland")

err := buildGnoland(t, gnoRootDir, gnolandBin)
require.NoError(t, err)

Expand All @@ -32,6 +34,7 @@ func TestForkGnoland(t *testing.T) {
gnoenv.RootDir()
remoteAddr, cmd, err := ExecuteForkBinary(ctx, gnolandBin, &ForkConfig{
// PrivValidator: ed25519.GenPrivKey(),
DBDir: gnolandDBDir,
RootDir: gnoRootDir,
TMConfig: cfg.TMConfig,
Genesis: NewMarshalableGenesisDoc(cfg.Genesis),
Expand Down

0 comments on commit a9bde35

Please sign in to comment.