mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-09 17:22:21 +08:00
fix fuse mounting issues
this time, without loading the private key on every startup
This commit is contained in:
@ -98,7 +98,13 @@ func TestGetFailures(t *testing.T) {
|
||||
{
|
||||
typ := pb.Message_GET_VALUE
|
||||
str := "hello"
|
||||
rec, err := d.makePutRecord(u.Key(str), []byte("blah"))
|
||||
|
||||
sk, err := d.getOwnPrivateKey()
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
rec, err := MakePutRecord(sk, u.Key(str), []byte("blah"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
Reference in New Issue
Block a user