fix: save master public key on wallet creation

This commit is contained in:
thomasv 2013-03-02 13:45:30 +01:00
parent 346cc34091
commit 08a9de688a
1 changed files with 2 additions and 0 deletions

View File

@ -175,6 +175,8 @@ class Wallet:
self.accounts[0] = { 0:[], 1:[], 'name':'Main account' }
self.sequences[0] = sequence
self.config.set_key('accounts', self.accounts, True)
mpk = sequence.master_public_key
self.config.set_key('master_public_key', mpk, True)