tidied up the import structure/order

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2023-03-01 15:06:39 +01:00
parent 6b61c731d7
commit 7e3b7edb03
No known key found for this signature in database

View File

@ -9,9 +9,10 @@ with Tendermint.
import logging
import sys
from tendermint.abci import types_pb2
from abci.application import BaseApplication
from abci.application import OkCode
from tendermint.abci import types_pb2
from tendermint.abci.types_pb2 import (
ResponseInfo,
ResponseInitChain,
@ -23,7 +24,6 @@ from tendermint.abci.types_pb2 import (
)
from planetmint.application.validator import Validator
from planetmint.abci.utils import decode_validator, decode_transaction, calculate_hash
from planetmint.abci.block import Block
from planetmint.ipc.events import EventTypes, Event