aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/keyrings/simple.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/keyrings/simple.js')
-rw-r--r--app/scripts/keyrings/simple.js24
1 files changed, 13 insertions, 11 deletions
diff --git a/app/scripts/keyrings/simple.js b/app/scripts/keyrings/simple.js
index 3eda9b8f9..59d4691c6 100644
--- a/app/scripts/keyrings/simple.js
+++ b/app/scripts/keyrings/simple.js
@@ -12,17 +12,19 @@ module.exports = class SimpleKeyring extends EventEmitter {
super()
this.type = type
this.opts = opts || {}
- const walletData = this.opts.wallets || []
- this.wallets = walletData.map((w) => {
- return Wallet.fromPrivateKey(w)
- })
+ this.wallets = []
}
serialize() {
- return {
- type,
- wallets: this.wallets.map(w => w.getPrivateKey()),
- }
+ return this.wallets.map(w => w.getPrivateKey().toString('hex'))
+ }
+
+ deserialize(wallets = []) {
+ this.wallets = wallets.map((w) => {
+ var b = new Buffer(w, 'hex')
+ const wallet = Wallet.fromPrivateKey(b)
+ return wallet
+ })
}
addAccounts(n = 1) {
@@ -30,12 +32,12 @@ module.exports = class SimpleKeyring extends EventEmitter {
for (var i = 0; i < n; i++) {
newWallets.push(Wallet.generate())
}
- this.wallets.concat(newWallets)
- return newWallets.map(w => w.getAddress())
+ this.wallets = this.wallets.concat(newWallets)
+ return newWallets.map(w => w.getAddress().toString('hex'))
}
getAccounts() {
- return this.wallets.map(w => w.getAddress())
+ return this.wallets.map(w => w.getAddress().toString('hex'))
}
}