Page MenuHomePhabricator

[CHRONIK] add is_final to tx struct in util.rs
ClosedPublic

Authored by hazzarust on Sun, Nov 17, 20:35.

Details

Reviewers
Fabien
tobias_ruck
Group Reviewers
Restricted Owners Package(Owns No Changed Paths)
Restricted Project
Commits
rABC8f49415dbac4: [CHRONIK] add is_final to tx struct in util.rs
Summary

is_final determines whether or not a block is final, and returns a bool dependant on outcome

Test Plan

ninja check-functional

Event Timeline

Owners added a reviewer: Restricted Owners Package.Sun, Nov 17, 20:35

renamed variable from x to block

Fabien requested changes to this revision.Mon, Nov 18, 08:42
Fabien added a subscriber: Fabien.

When you add a new feature like this you need to also add a test for the new feature so you demonstrate that it works as expected.
You can look at the functional tests in test/functional/chronik_*.py for test examples, and most likely you can extend one of the existing test instead of creating a new one.

chronik/chronik-indexer/src/query/util.rs
167 ↗(On Diff #50912)

Note that this will not be enough for pre-consensus and will need to be reworked at some point. Not blocking though, this is still an improvement over no flag at all.

chronik/chronik-proto/proto/chronik.proto
110 ↗(On Diff #50912)

The fact that this relates to the block for now is an implementation detail. After pre-consensus this will no longer be the case, but the field can remain and still means the tx is final.

This revision now requires changes to proceed.Mon, Nov 18, 08:42

Added tests post revision comments

This comment was removed by hazzarust.

Made changes as revised - added tests

tobias_ruck added a subscriber: tobias_ruck.
tobias_ruck added inline comments.
chronik/chronik-indexer/src/query/util.rs
167
test/functional/chronik_avalanche.py
121

you meant this?

159

no commented code plx

This revision now requires changes to proceed.Tue, Nov 19, 22:12
hazzarust marked 2 inline comments as done.

Changed comments and code in proto and chronik_avalanche.py

squashed 2 commits into 1 and updated

This revision is now accepted and ready to land.Wed, Nov 20, 11:43
This revision was automatically updated to reflect the committed changes.