mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 17:03:46 +00:00
swarm/api, swarm/fuse: NewLocalDPA missing params
This commit is contained in:
parent
4a91e70031
commit
fb4f106ef7
2 changed files with 2 additions and 2 deletions
|
|
@ -36,7 +36,7 @@ func testApi(t *testing.T, f func(*Api)) {
|
|||
}
|
||||
os.RemoveAll(datadir)
|
||||
defer os.RemoveAll(datadir)
|
||||
dpa, err := storage.NewLocalDPA(datadir)
|
||||
dpa, err := storage.NewLocalDPA(datadir, "")
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
|
|
|||
|
|
@ -810,7 +810,7 @@ func TestFUSE(t *testing.T) {
|
|||
}
|
||||
os.RemoveAll(datadir)
|
||||
|
||||
dpa, err := storage.NewLocalDPA(datadir)
|
||||
dpa, err := storage.NewLocalDPA(datadir, "")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue