mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-17 13:07:32 +02:00
Rename blockchain folder to bitcoin (#438)
This commit is contained in:
parent
a536d18573
commit
4981c99440
8 changed files with 5 additions and 6 deletions
|
|
@ -4,8 +4,8 @@ from typing import Optional
|
|||
|
||||
import requests
|
||||
|
||||
from squeaknode.blockchain.block_info import BlockInfo
|
||||
from squeaknode.blockchain.blockchain_client import BlockchainClient
|
||||
from squeaknode.bitcoin.block_info import BlockInfo
|
||||
from squeaknode.bitcoin.blockchain_client import BlockchainClient
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
from squeaknode.blockchain.block_info import BlockInfo
|
||||
from squeaknode.bitcoin.block_info import BlockInfo
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
@ -19,7 +19,6 @@ from sqlalchemy import (
|
|||
from sqlalchemy.sql import and_, or_, select
|
||||
from squeak.core import CSqueak
|
||||
|
||||
from squeaknode.blockchain.util import parse_block_header
|
||||
from squeaknode.core.offer import Offer
|
||||
from squeaknode.core.offer_with_peer import OfferWithPeer
|
||||
from squeaknode.core.squeak_entry import SqueakEntry
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ from sqlalchemy import (
|
|||
from sqlalchemy.sql import and_, or_, select
|
||||
from squeak.core import CSqueak
|
||||
|
||||
from squeaknode.blockchain.util import parse_block_header
|
||||
from squeaknode.bitcoin.util import parse_block_header
|
||||
from squeaknode.core.offer import Offer
|
||||
from squeaknode.core.offer_with_peer import OfferWithPeer
|
||||
from squeaknode.core.sent_payment_with_peer import SentPaymentWithPeer
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ from squeak.params import SelectParams
|
|||
from squeaknode.admin.squeak_admin_server_handler import SqueakAdminServerHandler
|
||||
from squeaknode.admin.squeak_admin_server_servicer import SqueakAdminServerServicer
|
||||
from squeaknode.admin.webapp.app import SqueakAdminWebServer
|
||||
from squeaknode.blockchain.bitcoin_blockchain_client import BitcoinBlockchainClient
|
||||
from squeaknode.bitcoin.bitcoin_blockchain_client import BitcoinBlockchainClient
|
||||
from squeaknode.common.lnd_lightning_client import LNDLightningClient
|
||||
from squeaknode.db.db_engine import get_engine, get_sqlite_connection_string
|
||||
from squeaknode.db.squeak_db import SqueakDb
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue