-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
fix(protocol): fix bridge prove message issue using staticcall #16404
Conversation
How could it work even on an internal devnet ? Or simply we never cached the data, that was it ? |
The relayer did not enable caching. |
Previously
proveSignalReceived
in signalService is aview
function, but now it can cache data so it's no longer aview
function. Therefore, in Bridge.sol, we can no longer usestaticcall
.