35 lines
818 B
Go
35 lines
818 B
Go
|
// Copyright (c) 2018 The btcsuite developers
|
||
|
// Use of this source code is governed by an ISC
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package wallet
|
||
|
|
||
|
import (
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/btcsuite/btcd/chaincfg"
|
||
|
_ "github.com/btcsuite/btcwallet/walletdb/bdb"
|
||
|
)
|
||
|
|
||
|
// TestCreateWatchingOnly checks that we can construct a watching-only
|
||
|
// wallet.
|
||
|
func TestCreateWatchingOnly(t *testing.T) {
|
||
|
// Set up a wallet.
|
||
|
dir, err := ioutil.TempDir("", "watchingonly_test")
|
||
|
if err != nil {
|
||
|
t.Fatalf("Failed to create db dir: %v", err)
|
||
|
}
|
||
|
defer os.RemoveAll(dir)
|
||
|
|
||
|
pubPass := []byte("hello")
|
||
|
|
||
|
loader := NewLoader(&chaincfg.TestNet3Params, dir, true, 250)
|
||
|
_, err = loader.CreateNewWatchingOnlyWallet(pubPass, time.Now())
|
||
|
if err != nil {
|
||
|
t.Fatalf("unable to create wallet: %v", err)
|
||
|
}
|
||
|
}
|