forked from LBRYCommunity/lbry-sdk
fixed remaining references to lbrynet.extras.wallet -> lbrynet.wallet
This commit is contained in:
parent
d0201fe7c7
commit
a3c3143868
4 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ LBRY SDK for Python is currently the most full featured implementation of the LB
|
|||
* Kademlia DHT (Distributed Hash Table) implementation for finding peers to download from and announcing to peers what we have to host ([lbrynet.dht](https://github.com/lbryio/lbry/tree/master/lbrynet/dht)).
|
||||
* Blob exchange protocol for transferring encrypted blobs of content and negotiating payments ([lbrynet.blob_exchange](https://github.com/lbryio/lbry/tree/master/lbrynet/blob_exchange)).
|
||||
* Protobuf schema for encoding and decoding metadata stored on the blockchain ([lbrynet.schema](https://github.com/lbryio/lbry/tree/master/lbrynet/schema)).
|
||||
* Wallet implementation for the LBRY blockchain ([lbrynet.extras.wallet](https://github.com/lbryio/lbry/tree/master/lbrynet/extras/wallet)).
|
||||
* Wallet implementation for the LBRY blockchain ([lbrynet.wallet](https://github.com/lbryio/lbry/tree/master/lbrynet/wallet)).
|
||||
* Daemon with a JSON-RPC API to ease building end user applications in any language and for automating various tasks ([lbrynet.extras.daemon](https://github.com/lbryio/lbry/tree/master/lbrynet/extras/daemon)).
|
||||
|
||||
## Installation
|
||||
|
|
|
@ -26,7 +26,7 @@ EXPOSE 5280
|
|||
EXPOSE 50002
|
||||
# blockchain
|
||||
EXPOSE 9246
|
||||
ENV TORBA_LEDGER lbrynet.extras.wallet
|
||||
ENV TORBA_LEDGER lbrynet.wallet
|
||||
|
||||
RUN /usr/local/bin/orchstr8 download
|
||||
ENTRYPOINT ["/usr/local/bin/orchstr8"]
|
||||
|
|
|
@ -2,7 +2,7 @@ import asyncio
|
|||
|
||||
from torba.testcase import IntegrationTestCase
|
||||
|
||||
import lbrynet.extras.wallet
|
||||
import lbrynet.wallet
|
||||
from lbrynet.schema.claim import Claim
|
||||
from lbrynet.wallet.transaction import Transaction, Output
|
||||
from lbrynet.wallet.dewies import dewies_to_lbc as d2l, lbc_to_dewies as l2d
|
||||
|
|
|
@ -9,8 +9,8 @@ import lbrynet.schema
|
|||
lbrynet.schema.BLOCKCHAIN_NAME = 'lbrycrd_regtest'
|
||||
|
||||
from lbrynet.conf import Config
|
||||
from lbrynet.wallet import LbryWalletManager, RegTestLedger
|
||||
from lbrynet.extras.daemon.Daemon import Daemon
|
||||
from lbrynet.extras.wallet import LbryWalletManager, RegTestLedger
|
||||
from lbrynet.extras.daemon.Components import WalletComponent
|
||||
from lbrynet.extras.daemon.Components import (
|
||||
DHT_COMPONENT, HASH_ANNOUNCER_COMPONENT, PEER_PROTOCOL_SERVER_COMPONENT,
|
||||
|
|
Loading…
Reference in a new issue