Merge pull request #2633 from nspcc-dev/fix-wallet-version

Fix wallet version
This commit is contained in:
Roman Khimov 2022-08-08 17:00:04 +03:00 committed by GitHub
commit 5194b34a93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 23 additions and 23 deletions

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NMUedC8TSV2rE17wGguSvPk9XcmHSaT275",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NdypBhqkz2CMMnwxBgvoC9X2XjKF5axgKo",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NPrB7BmTMYxf9UVroJp4RQExM9tqKmsHTz",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nfyz4KcsgYepRJw1W5C2uKCi6QWKf7v6gG",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -120,7 +120,7 @@ Use `wallet init` command to create a new wallet:
./bin/neo-go wallet init -w wallet.nep6
{
"version": "3.0",
"version": "1.0",
"accounts": [],
"scrypt": {
"n": 16384,
@ -144,7 +144,7 @@ Enter passphrase >
Confirm passphrase >
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NMe64G6j6nkPZby26JAgpaCNrn1Ee4wW6E",
@ -204,7 +204,7 @@ keys at the same time with `-d` option (you'll be prompted for password):
Enter wallet password >
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NMe64G6j6nkPZby26JAgpaCNrn1Ee4wW6E",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NbrUYaZgyhSkNoRo9ugRyEMdUZxrhkNaWB",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NMUedC8TSV2rE17wGguSvPk9XcmHSaT275",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NdypBhqkz2CMMnwxBgvoC9X2XjKF5axgKo",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NPrB7BmTMYxf9UVroJp4RQExM9tqKmsHTz",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nbruchf1SGfar3sN4cPr1UG1bWqADrN5sh",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NaVp3ZxwZWA84DRewRjnBLFstaeBuVMKwR",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NLUCkBS5dtk1h5cedgFoVXqeoCW2UiYNrZ",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "NUkatH1cgvBeQyDwfyEjTqZRgjmXC1d23A",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -1,5 +1,5 @@
{
"version": "3.0",
"version": "1.0",
"accounts": [
{
"address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn",

View file

@ -14,7 +14,7 @@ import (
const (
// The current version of neo-go wallet implementations.
walletVersion = "3.0"
walletVersion = "1.0"
)
// Wallet represents a NEO (NEP-2, NEP-6) compliant wallet.