Browse Source

Fix import

master
Neil Booth 8 years ago
parent
commit
942d5d6b00
  1. 1
      server/block_processor.py
  2. 3
      server/protocol.py

1
server/block_processor.py

@ -21,7 +21,6 @@ from functools import partial
from server.daemon import Daemon, DaemonError from server.daemon import Daemon, DaemonError
from server.version import VERSION from server.version import VERSION
from lib.hash import hash_to_str from lib.hash import hash_to_str
from lib.tx import Deserializer
from lib.util import chunks, LoggedClass from lib.util import chunks, LoggedClass
import server.db import server.db
from server.storage import open_db from server.storage import open_db

3
server/protocol.py

@ -14,11 +14,12 @@ import json
import ssl import ssl
import time import time
import traceback import traceback
from collections import namedtuple from collections import defaultdict, namedtuple
from functools import partial from functools import partial
from lib.hash import sha256, double_sha256, hash_to_str, hex_str_to_hash from lib.hash import sha256, double_sha256, hash_to_str, hex_str_to_hash
from lib.jsonrpc import JSONRPC, json_notification_payload from lib.jsonrpc import JSONRPC, json_notification_payload
from lib.tx import Deserializer
from lib.util import LoggedClass from lib.util import LoggedClass
from server.block_processor import BlockProcessor from server.block_processor import BlockProcessor
from server.daemon import DaemonError from server.daemon import DaemonError

Loading…
Cancel
Save