mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
gui: update stdio and text after db and storage separation (#6567)
e1ce3aace7
updated the qt and kivy guis, but not stdio or text one.
This commit is contained in:
parent
21c3572600
commit
48a7e5cc2b
2 changed files with 7 additions and 2 deletions
|
@ -5,6 +5,7 @@ import logging
|
|||
|
||||
from electrum import util
|
||||
from electrum import WalletStorage, Wallet
|
||||
from electrum.wallet_db import WalletDB
|
||||
from electrum.util import format_satoshis
|
||||
from electrum.bitcoin import is_address, COIN
|
||||
from electrum.transaction import PartialTxOutput
|
||||
|
@ -30,6 +31,8 @@ class ElectrumGui:
|
|||
password = getpass.getpass('Password:', stream=None)
|
||||
storage.decrypt(password)
|
||||
|
||||
db = WalletDB(storage.read(), manual_upgrades=False)
|
||||
|
||||
self.done = 0
|
||||
self.last_balance = ""
|
||||
|
||||
|
@ -40,7 +43,7 @@ class ElectrumGui:
|
|||
self.str_amount = ""
|
||||
self.str_fee = ""
|
||||
|
||||
self.wallet = Wallet(storage, config=config)
|
||||
self.wallet = Wallet(db, storage, config=config)
|
||||
self.wallet.start_network(self.network)
|
||||
self.contacts = self.wallet.contacts
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@ from electrum.util import format_satoshis
|
|||
from electrum.bitcoin import is_address, COIN
|
||||
from electrum.transaction import PartialTxOutput
|
||||
from electrum.wallet import Wallet
|
||||
from electrum.wallet_db import WalletDB
|
||||
from electrum.storage import WalletStorage
|
||||
from electrum.network import NetworkParameters, TxBroadcastError, BestEffortRequestFailed
|
||||
from electrum.interface import ServerAddr
|
||||
|
@ -41,7 +42,8 @@ class ElectrumGui:
|
|||
if storage.is_encrypted():
|
||||
password = getpass.getpass('Password:', stream=None)
|
||||
storage.decrypt(password)
|
||||
self.wallet = Wallet(storage, config=config)
|
||||
db = WalletDB(storage.read(), manual_upgrades=False)
|
||||
self.wallet = Wallet(db, storage, config=config)
|
||||
self.wallet.start_network(self.network)
|
||||
self.contacts = self.wallet.contacts
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue