-
Notifications
You must be signed in to change notification settings - Fork 11
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
Use molecule for hopdata and tlc_err #425
Use molecule for hopdata and tlc_err #425
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #425 +/- ##
===========================================
+ Coverage 49.80% 49.85% +0.05%
===========================================
Files 47 47
Lines 29806 31090 +1284
===========================================
+ Hits 14845 15501 +656
- Misses 14961 15589 +628
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
c498de4
to
397ed27
Compare
397ed27
to
a2461cc
Compare
a2461cc
to
4e835c3
Compare
next_hop: PubkeyOpt, | ||
} | ||
|
||
// A ChannelUpdate is a update to the public channel. Newer channel information may be updated with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer to keep ChannelUpdate
in gossip.mol
, as it is logically more consistent. What is the rational of moving this struct? Did you encountered cyclic dependency issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TlcErrData
contains a filed of ChannelUpdate
, and it seems is weird if we add TlcErrData
in gossip
Line 1116 in 6c18519
channel_update: Option<ChannelUpdate>, |
any other better way.
removed duplicated unit test by the way.