forked from cerc-io/laconicd-deprecated
fix lint
This commit is contained in:
parent
e5a3b065e4
commit
761d656295
@ -15,9 +15,7 @@ def geth(tmp_path_factory):
|
|||||||
yield from setup_geth(path, 8545)
|
yield from setup_geth(path, 8545)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(
|
@pytest.fixture(scope="session", params=["ethermint", "ethermint-ws"])
|
||||||
scope="session", params=["ethermint", "ethermint-ws"]
|
|
||||||
)
|
|
||||||
def ethermint_rpc_ws(request, ethermint):
|
def ethermint_rpc_ws(request, ethermint):
|
||||||
"""
|
"""
|
||||||
run on both ethermint and ethermint websocket
|
run on both ethermint and ethermint websocket
|
||||||
|
@ -193,9 +193,10 @@ def test_native_tx_priority(ethermint):
|
|||||||
print(tx_indexes)
|
print(tx_indexes)
|
||||||
# the first sent tx are included later, because of lower priority
|
# the first sent tx are included later, because of lower priority
|
||||||
# ensure desc within continuous block
|
# ensure desc within continuous block
|
||||||
assert all((
|
assert all(
|
||||||
b1 < b2 or (b1 == b2 and i1 > i2)
|
(b1 < b2 or (b1 == b2 and i1 > i2))
|
||||||
) for (b1, i1), (b2, i2) in zip(tx_indexes, tx_indexes[1:]))
|
for (b1, i1), (b2, i2) in zip(tx_indexes, tx_indexes[1:])
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def get_max_priority_price(max_priority_price):
|
def get_max_priority_price(max_priority_price):
|
||||||
|
Loading…
Reference in New Issue
Block a user