-
Notifications
You must be signed in to change notification settings - Fork 79
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
invoker: add Signers() API #3492
Conversation
500dbb9
to
9469f8f
Compare
Maybe we also need |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3492 +/- ##
==========================================
- Coverage 86.19% 86.11% -0.08%
==========================================
Files 331 331
Lines 38494 38507 +13
==========================================
- Hits 33179 33162 -17
- Misses 3785 3814 +29
- Partials 1530 1531 +1 ☔ View full report in Codecov by Sentry. |
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 agree that we need SignerAccounts
actor API, they hold the accounts and it will be useful in NeoFS, I think I saw places where account is passed along with actor.
Signers are very important for notary checks and keeping/passing an additional copy of them is very inconvenient. Exposing them from invoker makes them available in actors too. Signed-off-by: Roman Khimov <[email protected]>
Allow to retrieve the list easily. Signed-off-by: Roman Khimov <[email protected]>
53c49d0
to
cc3f528
Compare
Signers are very important for notary checks and keeping/passing an additional copy of them is very inconvenient. Exposing them from invoker makes them available in actors too.