forked from LBRYCommunity/lbry-sdk
updated imports due to lbrynet.extras.wallet -> lbrynet.wallet move
This commit is contained in:
parent
e8abcbb06e
commit
120618ffd5
5 changed files with 5 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
|
|
|
@ -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):
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue