updated imports due to lbrynet.extras.wallet -> lbrynet.wallet move

This commit is contained in:
Lex Berezhny 2019-03-18 14:31:35 -04:00
parent e8abcbb06e
commit 120618ffd5
5 changed files with 5 additions and 6 deletions

View file

@ -6,6 +6,5 @@ __node_url__ = (
)
__spvserver__ = 'lbrynet.extras.wallet.server.coin.LBCRegTest'
from lbrynet.extras.wallet.ledger import MainNetLedger, RegTestLedger
from lbrynet.extras.wallet.manager import LbryWalletManager
from lbrynet.wallet.manager import LbryWalletManager
from lbrynet.extras.wallet.network import Network

View file

@ -9,7 +9,7 @@ from torba.server.block_processor import BlockProcessor
from lbrynet.schema.uri import parse_lbry_uri
from lbrynet.schema.decode import smart_decode
from lbrynet.extras.wallet.server.model import NameClaim, ClaimInfo, ClaimUpdate, ClaimSupport
from lbrynet.wallet.server.model import NameClaim, ClaimInfo, ClaimUpdate, ClaimSupport
class LBRYBlockProcessor(BlockProcessor):

View file

@ -6,7 +6,7 @@ from torba.server.hash import hash_to_hex_str
from torba.server.db import DB
from lbrynet.extras.wallet.server.model import ClaimInfo
from lbrynet.wallet.server.model import ClaimInfo
class LBRYDB(DB):

View file

@ -1,6 +1,6 @@
import struct
from torba.server.enum import Enumeration
from lbrynet.extras.wallet.server.model import NameClaim, ClaimSupport, ClaimUpdate
from lbrynet.wallet.server.model import NameClaim, ClaimSupport, ClaimUpdate
# TODO: Take this to lbryschema (it's also on lbryum and lbryum-server)

View file

@ -1,6 +1,6 @@
from torba.server.tx import Deserializer
from lbrynet.extras.wallet.server.opcodes import decode_claim_script
from lbrynet.extras.wallet.server.model import TxClaimOutput, LBRYTx
from lbrynet.wallet.server.model import TxClaimOutput, LBRYTx
class LBRYDeserializer(Deserializer):