Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem: state streamers are not integrated #702

Merged
merged 15 commits into from
Sep 21, 2022
Prev Previous commit
Next Next commit
fix integration test
  • Loading branch information
yihuang committed Sep 20, 2022
commit ec434f113a2a65c2a0e9314daac6fd4d94f119c7
4 changes: 2 additions & 2 deletions integration_tests/test_streamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ def test_streamers(cronos):
path = cronos.node_home(0) / "data/file_streamer/block-0-tx-0"
_, body, _ = decode_stream_file(open(path, "rb").read())
yihuang marked this conversation as resolved.
Show resolved Hide resolved
# creation of the validator account
assert body[0]["store_key"] == "acc"
assert body[0]["key"] == b"\x01" + HexBytes(ADDRS["validator"])
assert body[0].store_key == "acc"
assert body[0].key == b"\x01" + HexBytes(ADDRS["validator"])