GSN renaming (#1963)
* Merge GSNBouncerBase into GSNRecipient * Remove emtpy implementations for _pre and _post * Rename bouncers to recipients * Rename bouncers documentation to strategies * Rewrite guides and docstrings to use the strategy naming scheme * Address review comments * Apply suggestions from code review Co-Authored-By: Francisco Giordano <frangio.1@gmail.com> * change wording of docs
This commit is contained in:
@ -17,11 +17,11 @@ contract GSNRecipientMock is ContextMock, GSNRecipient {
|
||||
return (0, "");
|
||||
}
|
||||
|
||||
function preRelayedCall(bytes calldata) external returns (bytes32) {
|
||||
function _preRelayedCall(bytes memory) internal returns (bytes32) {
|
||||
// solhint-disable-previous-line no-empty-blocks
|
||||
}
|
||||
|
||||
function postRelayedCall(bytes calldata, bool, uint256, bytes32) external {
|
||||
function _postRelayedCall(bytes memory, bool, uint256, bytes32) internal {
|
||||
// solhint-disable-previous-line no-empty-blocks
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user