4c5bc1b15d
This PR allows the creation of managers and accounts that are watch-only. The state of the database after creation would be identical to the state after calling Manager.ConvertToWatchingOnly, assuming accounts with the right xpubs were created in the former case. Co-authored-by: Ken Sedgwick <ken@bonsai.com>
34 lines
818 B
Go
34 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)
|
|
}
|
|
}
|