Skip to content
Snippets Groups Projects
Commit ef27cbe4 authored by Fabian Schuh's avatar Fabian Schuh
Browse files

[linting]

parent f5405511
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ from events import Events ...@@ -10,7 +10,7 @@ from events import Events
import websocket import websocket
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
#logging.basicConfig(level=logging.DEBUG) # logging.basicConfig(level=logging.DEBUG)
class BitSharesWebsocket(Events): class BitSharesWebsocket(Events):
......
...@@ -35,8 +35,7 @@ def addRequiredFees(ws, ops, asset_id="1.3.0"): ...@@ -35,8 +35,7 @@ def addRequiredFees(ws, ops, asset_id="1.3.0"):
ops[i].op.data["proposed_ops"].data[j].data["op"].op.data["fee"] = ( ops[i].op.data["proposed_ops"].data[j].data["op"].op.data["fee"] = (
Asset( Asset(
amount=fees[i][1][j]["amount"], amount=fees[i][1][j]["amount"],
asset_id=fees[i][1][j]["asset_id"] asset_id=fees[i][1][j]["asset_id"]))
))
else: else:
# Operation is a regular operation # Operation is a regular operation
ops[i].op.data["fee"] = Asset( ops[i].op.data["fee"] = Asset(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment