mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
lnbase: use relative imports
This commit is contained in:
parent
784b06f1b9
commit
1f5852bd15
1 changed files with 6 additions and 6 deletions
|
@ -15,12 +15,12 @@ import hashlib
|
|||
import hmac
|
||||
import cryptography.hazmat.primitives.ciphers.aead as AEAD
|
||||
|
||||
from electrum.bitcoin import public_key_from_private_key, ser_to_point, point_to_ser, string_to_number, deserialize_privkey, EC_KEY, rev_hex
|
||||
from electrum.constants import set_testnet, set_simnet
|
||||
import electrum.constants as constants
|
||||
from electrum.util import PrintError
|
||||
from electrum.wallet import Wallet
|
||||
from electrum.storage import WalletStorage
|
||||
from .bitcoin import public_key_from_private_key, ser_to_point, point_to_ser, string_to_number, deserialize_privkey, EC_KEY, rev_hex
|
||||
from .constants import set_testnet, set_simnet
|
||||
from . import constants
|
||||
from .util import PrintError
|
||||
from .wallet import Wallet
|
||||
from .storage import WalletStorage
|
||||
|
||||
tcp_socket_timeout = 10
|
||||
server_response_timeout = 60
|
||||
|
|
Loading…
Add table
Reference in a new issue