-
Notifications
You must be signed in to change notification settings - Fork 45
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
Implement internal message task #533
Conversation
go.mod
Outdated
@@ -82,3 +84,5 @@ replace ( | |||
// Supports go-ipld-prime v7 | |||
// TODO: remove once https://github.com/filecoin-project/go-hamt-ipld/pull/70 is merged to github.com/filecoin-project/go-hamt-ipld | |||
replace github.com/filecoin-project/go-hamt-ipld/v2 => github.com/willscott/go-hamt-ipld/v2 v2.0.1-0.20210225034344-6d6dfa9b3960 | |||
|
|||
replace github.com/filecoin-project/lotus => ../lotus |
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.
other half of this lives here: filecoin-project/lotus#6389
fa66603
to
dea8b03
Compare
dea8b03
to
f348c9b
Compare
f348c9b
to
57c2f0b
Compare
673eb90
to
12c3757
Compare
Codecov Report
@@ Coverage Diff @@
## master #533 +/- ##
========================================
- Coverage 32.7% 32.4% -0.4%
========================================
Files 41 41
Lines 3710 3751 +41
========================================
+ Hits 1216 1217 +1
- Misses 2321 2361 +40
Partials 173 173 |
storage model.Storage | ||
processors map[string]TipSetProcessor | ||
messageProcessors map[string]MessageProcessor | ||
messageExecutionProcessors map[string]MessageExecutionProcessor |
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.
the new processor for message executions, unable to reuse the existing one since lily is required for this workflow.
2455355
to
e876eee
Compare
}) | ||
} | ||
|
||
// TODO(frrist): this code is commented out as it collects all internal message sent through the VM. |
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.
issue for this here: #602
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.
LGTM
Implements internal message tracking for Cron Ticks and Miner Reward Messages.