-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3588 from lbryio/scribe
move `lbry.wallet.server` to new project called `scribe`, switch from using `lbrycrd` to `lbcd` in integration tests
- Loading branch information
Showing
60 changed files
with
1,087 additions
and
12,269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
__node_daemon__ = 'lbrycrdd' | ||
__node_cli__ = 'lbrycrd-cli' | ||
__node_bin__ = '' | ||
__node_url__ = ( | ||
'https://github.com/lbryio/lbrycrd/releases/download/v0.17.4.6/lbrycrd-linux-1746.zip' | ||
__lbcd__ = 'lbcd' | ||
__lbcctl__ = 'lbcctl' | ||
__lbcwallet__ = 'lbcwallet' | ||
__lbcd_url__ = ( | ||
'https://github.com/lbryio/lbcd/releases/download/' + | ||
'v0.22.200-beta/lbcd_0.22.200-beta_TARGET_PLATFORM.tar.gz' | ||
) | ||
__lbcwallet_url__ = ( | ||
'https://github.com/lbryio/lbcwallet/releases/download/' + | ||
'v0.13.100-alpha-rc2/lbcwallet_0.13.100-alpha-rc2_TARGET_PLATFORM.tar.gz' | ||
) | ||
__spvserver__ = 'lbry.wallet.server.coin.LBCRegTest' | ||
|
||
from .wallet import Wallet, WalletStorage, TimestampedPreferences, ENCRYPT_ON_DISK | ||
from .manager import WalletManager | ||
from .network import Network | ||
from .ledger import Ledger, RegTestLedger, TestNetLedger, BlockHeightEvent | ||
from .account import Account, AddressManager, SingleKey, HierarchicalDeterministic, DeterministicChannelKeyManager | ||
from .transaction import Transaction, Output, Input | ||
from .script import OutputScript, InputScript | ||
from .database import SQLiteMixin, Database | ||
from .header import Headers | ||
from lbry.wallet.wallet import Wallet, WalletStorage, TimestampedPreferences, ENCRYPT_ON_DISK | ||
from lbry.wallet.manager import WalletManager | ||
from lbry.wallet.network import Network | ||
from lbry.wallet.ledger import Ledger, RegTestLedger, TestNetLedger, BlockHeightEvent | ||
from lbry.wallet.account import Account, AddressManager, SingleKey, HierarchicalDeterministic, \ | ||
DeterministicChannelKeyManager | ||
from lbry.wallet.transaction import Transaction, Output, Input | ||
from lbry.wallet.script import OutputScript, InputScript | ||
from lbry.wallet.database import SQLiteMixin, Database | ||
from lbry.wallet.header import Headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.