mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
* gui and daemon are in the same process * commands that require network are sent to the daemon * open only one gui window per wallet
14 lines
587 B
Python
14 lines
587 B
Python
from version import ELECTRUM_VERSION
|
|
from util import format_satoshis, print_msg, print_json, print_error, set_verbosity
|
|
from wallet import Synchronizer, WalletStorage
|
|
from wallet import Wallet, Imported_Wallet
|
|
from network import Network, DEFAULT_SERVERS, DEFAULT_PORTS, pick_random_server
|
|
from interface import Interface
|
|
from simple_config import SimpleConfig, get_config, set_config
|
|
import bitcoin
|
|
import account
|
|
import transaction
|
|
from transaction import Transaction
|
|
from plugins import BasePlugin
|
|
from commands import Commands, known_commands
|
|
from network_proxy import NetworkProxy
|