docs: remove mention of delegatecall from verifier doc

- Because we will more likely use a regular call (safer and delegatecall is unnecessary)
This commit is contained in:
TAMARA LIPOWSKI
2025-01-22 14:21:49 -05:00
parent 59950a7575
commit 34243e9016

View File

@@ -4,11 +4,9 @@ pragma solidity ^0.8.0;
/**
* @title Dispatch callback verification to external contracts
* @author PropellerHeads Devs
* @dev Provides the ability to delegate callback verification to external
* contracts. This allows dynamically adding new supported protocols
* without needing to upgrade any contracts. External contracts will
* be called using delegatecall so they can share state with the main
* contract if needed.
* @dev Provides the ability call external contracts to perform callback
* verification. This allows dynamically adding new supported protocols
* without needing to upgrade any contracts.
*
* Note Verifier contracts need to implement the ICallbackVerifier interface
*/