update imports

This commit is contained in:
Jack Robison 2022-03-21 22:58:49 -04:00
parent 47f7ab7bd6
commit bb3337da5f
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
9 changed files with 17 additions and 17 deletions

View file

@ -27,7 +27,7 @@ from lbry.wallet import (
) )
from lbry.wallet.dewies import dewies_to_lbc, lbc_to_dewies, dict_values_to_lbc from lbry.wallet.dewies import dewies_to_lbc, lbc_to_dewies, dict_values_to_lbc
from lbry.wallet.constants import TXO_TYPES, CLAIM_TYPE_NAMES from lbry.wallet.constants import TXO_TYPES, CLAIM_TYPE_NAMES
from scribe.bip32 import PrivateKey from scribe.schema.bip32 import PrivateKey
from lbry import utils from lbry import utils
from lbry.conf import Config, Setting, NOT_SET from lbry.conf import Config, Setting, NOT_SET

View file

@ -8,7 +8,7 @@ from google.protobuf.message import DecodeError
from scribe.schema.claim import Claim from scribe.schema.claim import Claim
from scribe.schema.support import Support from scribe.schema.support import Support
from scribe.bip32 import PublicKey from scribe.schema.bip32 import PublicKey
from lbry.torrent.torrent_manager import TorrentSource from lbry.torrent.torrent_manager import TorrentSource
from lbry.wallet import Wallet, Ledger, Account, Transaction, Output from lbry.wallet import Wallet, Ledger, Account, Transaction, Output
from lbry.wallet.dewies import dewies_to_lbc from lbry.wallet.dewies import dewies_to_lbc

View file

@ -12,7 +12,7 @@ from typing import Type, Dict, Tuple, Optional, Any, List
from lbry.error import InvalidPasswordError from lbry.error import InvalidPasswordError
from lbry.crypto.crypt import aes_encrypt, aes_decrypt from lbry.crypto.crypt import aes_encrypt, aes_decrypt
from scribe.bip32 import PrivateKey, PublicKey, KeyPath, from_extended_key_string from scribe.schema.bip32 import PrivateKey, PublicKey, KeyPath, from_extended_key_string
from .mnemonic import Mnemonic from .mnemonic import Mnemonic
from .constants import COIN, TXO_TYPES from .constants import COIN, TXO_TYPES
from .transaction import Transaction, Input, Output from .transaction import Transaction, Input, Output

View file

@ -13,7 +13,7 @@ from datetime import date
from prometheus_client import Gauge, Counter, Histogram from prometheus_client import Gauge, Counter, Histogram
from lbry.utils import LockWithMetrics from lbry.utils import LockWithMetrics
from scribe.bip32 import PublicKey from scribe.schema.bip32 import PublicKey
from .transaction import Transaction, Output, OutputScript, TXRefImmutable, Input from .transaction import Transaction, Output, OutputScript, TXRefImmutable, Input
from .constants import TXO_TYPES, CLAIM_TYPES from .constants import TXO_TYPES, CLAIM_TYPES
from .util import date_to_julian_day from .util import date_to_julian_day

View file

@ -26,7 +26,7 @@ from lbry.wallet.transaction import Transaction, Output
from lbry.wallet.header import Headers, UnvalidatedHeaders from lbry.wallet.header import Headers, UnvalidatedHeaders
from lbry.wallet.checkpoints import HASHES from lbry.wallet.checkpoints import HASHES
from lbry.wallet.constants import TXO_TYPES, CLAIM_TYPES, COIN, NULL_HASH32 from lbry.wallet.constants import TXO_TYPES, CLAIM_TYPES, COIN, NULL_HASH32
from scribe.bip32 import PublicKey, PrivateKey from scribe.schema.bip32 import PublicKey, PrivateKey
from lbry.wallet.coinselection import CoinSelector from lbry.wallet.coinselection import CoinSelector
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View file

@ -21,8 +21,9 @@ from lbry.conf import KnownHubsList, Config
from lbry.wallet.orchstr8 import __hub_url__ from lbry.wallet.orchstr8 import __hub_url__
from scribe.env import Env from scribe.env import Env
from scribe.reader import BlockchainReaderServer, ElasticWriter from scribe.hub.service import HubServerService
from scribe.blockchain.block_processor import BlockProcessor from scribe.elasticsearch.service import ElasticSyncService
from scribe.blockchain.service import BlockchainProcessorService
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
@ -217,9 +218,9 @@ class SPVNode:
self.node_number = node_number self.node_number = node_number
self.controller = None self.controller = None
self.data_path = None self.data_path = None
self.server: Optional[BlockchainReaderServer] = None self.server: Optional[HubServerService] = None
self.writer: Optional[BlockProcessor] = None self.writer: Optional[BlockchainProcessorService] = None
self.es_writer: Optional[ElasticWriter] = None self.es_writer: Optional[ElasticSyncService] = None
self.hostname = 'localhost' self.hostname = 'localhost'
self.port = 50001 + node_number # avoid conflict with default daemon self.port = 50001 + node_number # avoid conflict with default daemon
self.udp_port = self.port self.udp_port = self.port
@ -254,10 +255,9 @@ class SPVNode:
if extraconf: if extraconf:
conf.update(extraconf) conf.update(extraconf)
env = Env(**conf) env = Env(**conf)
self.writer = BlockProcessor(env) self.writer = BlockchainProcessorService(env)
self.server = BlockchainReaderServer(env) self.server = HubServerService(env)
self.es_writer = ElasticWriter(env) self.es_writer = ElasticSyncService(env)
await self.writer.open()
await self.writer.start() await self.writer.start()
await self.es_writer.start() await self.es_writer.start()
await self.server.start() await self.server.start()

View file

@ -12,7 +12,7 @@ from scribe.schema.claim import Claim
from scribe.schema.base import Signable from scribe.schema.base import Signable
from scribe.schema.purchase import Purchase from scribe.schema.purchase import Purchase
from scribe.schema.support import Support from scribe.schema.support import Support
from scribe.bip32 import PrivateKey, PublicKey from scribe.schema.bip32 import PrivateKey, PublicKey
from .script import InputScript, OutputScript from .script import InputScript, OutputScript
from .constants import COIN, DUST, NULL_HASH32 from .constants import COIN, DUST, NULL_HASH32

View file

@ -1,7 +1,7 @@
from binascii import unhexlify, hexlify from binascii import unhexlify, hexlify
from lbry.testcase import AsyncioTestCase from lbry.testcase import AsyncioTestCase
from scribe.bip32 import PublicKey, PrivateKey, from_extended_key_string from scribe.schema.bip32 import PublicKey, PrivateKey, from_extended_key_string
from lbry.wallet import Ledger, Database, Headers from lbry.wallet import Ledger, Database, Headers
from tests.unit.wallet.key_fixtures import expected_ids, expected_privkeys, expected_hardened_privkeys from tests.unit.wallet.key_fixtures import expected_ids, expected_privkeys, expected_hardened_privkeys

View file

@ -2,7 +2,7 @@ from binascii import unhexlify
from lbry.testcase import AsyncioTestCase from lbry.testcase import AsyncioTestCase
from lbry.wallet.constants import CENT, NULL_HASH32 from lbry.wallet.constants import CENT, NULL_HASH32
from scribe.bip32 import PrivateKey, KeyPath from scribe.schema.bip32 import PrivateKey, KeyPath
from lbry.wallet.mnemonic import Mnemonic from lbry.wallet.mnemonic import Mnemonic
from lbry.wallet import Ledger, Database, Headers, Transaction, Input, Output from lbry.wallet import Ledger, Database, Headers, Transaction, Input, Output
from scribe.schema.claim import Claim from scribe.schema.claim import Claim