mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 13:47:19 +00:00
wallet: add test to regenerate examples wallet
This commit is contained in:
parent
68d0249c50
commit
5017f2d2e6
1 changed files with 14 additions and 0 deletions
|
@ -140,6 +140,20 @@ func TestRegenerateOracleWallets(t *testing.T) {
|
||||||
createWallet(t, path.Join(walletDir, "oracle2.json"), acc2)
|
createWallet(t, path.Join(walletDir, "oracle2.json"), acc2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestRegenerateExamplesWallet(t *testing.T) {
|
||||||
|
if !regenerate {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
const (
|
||||||
|
walletPath = "../../examples/my_wallet.json"
|
||||||
|
acc1WIF = "L46dn46AMZY7NQGZHemAdgcMabKon85eme45hgQkAUQBiRacY8MB"
|
||||||
|
)
|
||||||
|
|
||||||
|
acc1 := getAccount(t, acc1WIF, "qwerty")
|
||||||
|
acc1.Label = "my_account"
|
||||||
|
createWallet(t, walletPath, acc1)
|
||||||
|
}
|
||||||
|
|
||||||
func createWallet(t *testing.T, path string, accs ...*Account) {
|
func createWallet(t *testing.T, path string, accs ...*Account) {
|
||||||
w, err := NewWallet(path)
|
w, err := NewWallet(path)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
Loading…
Reference in a new issue