-
Notifications
You must be signed in to change notification settings - Fork 3
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
[Kiln v2] Fix claim function signature #10
Conversation
Hello, Can you please check on your side? |
Hey, I am using the latest version of zemu in CI and tests dependencies, any idea why tests still timeout? |
@loicttn you need to change the name of plugin elf that should be loaded in |
@loicttn I have tried with
You need something like that in your
|
So it seems that the claim function is not recognized now that we updated its signature 🤔 , if I understand correcly your solution is meant to enable blind signing which we want to avoid here, investigating why the claim selector is not recognized |
If you don't intend to use bling signing, don't use the solution I suggested. |
This reverts commit b7f1bef.
@loicttn you need to fix the app database :
As per the CI tip : Then put me or someone else from our team and we'll merge the fix |
Required here LedgerHQ/app-plugin-kiln#10
Hello, Currently, we accept errors in the workflow |
E2E tests are all passing, so ok to merge thanks a lot 👍 |
Claim function of the exit queue changed from
claim(uint32[],uint32[],uint16)
toclaim(uint256[],uint32[],uint16)
andmultiClaim(address[],uint32[][],uint32[][])
tomultiClaim(address[],uint256[][],uint32[][])
, here is a PR to take this change into account (especially regarding the function selector).