Pass KeyringStore to observables (#128)

This commit is contained in:
Jaco Greeff
2019-05-18 19:58:45 +02:00
committed by GitHub
parent 2b6e118736
commit 1b4ea9d2bf
6 changed files with 19 additions and 20 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ export default class Base {
.forEach((pair: KeyringPair) => {
const address = pair.address();
this.accounts.add(address, {
this.accounts.add(this._store, address, {
address,
meta: pair.getMeta()
});