Skip to content
Snippets Groups Projects
Commit b6fb4a92 authored by inso's avatar inso
Browse files

Support aiohttp 2

parent f6d32e9c
No related branches found
No related tags found
No related merge requests found
from .node import Node
from .user import User
from .block_forge import BlockForge
\ No newline at end of file
......@@ -25,7 +25,7 @@ class BlockForge:
_logger = attr.ib(default=attr.Factory(lambda: logging.getLogger('mirage')))
@classmethod
def start(cls, currency, salt, password, scrypt_params, loop):
def start(cls, currency, salt, password, scrypt_params):
key = SigningKey(salt, password, scrypt_params)
return cls(currency, key)
......
from aiohttp import web, log, errors
from aiohttp import web, log
import json
import socket
from duniterpy.documents import Peer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment