You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contracts/LSP0ERC725Account/LSP0ERC725Account.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1145,10 +1145,10 @@ extension if the extension is set, if not it returns false.
1145
1145
1146
1146
<br/>
1147
1147
1148
-
### \_getExtensionAndPayableBool
1148
+
### \_getExtensionAndFowardValue
1149
1149
1150
1150
```solidity
1151
-
function _getExtensionAndPayableBool(
1151
+
function _getExtensionAndFowardValue(
1152
1152
bytes4 functionSelector
1153
1153
) internal view returns (address, bool);
1154
1154
```
@@ -1183,7 +1183,7 @@ function _fallbackLSP17Extendable(
1183
1183
```
1184
1184
1185
1185
Forwards the call to an extension mapped to a function selector.
1186
-
Calls [`_getExtensionAndPayableBool`](#_getextensionandpayablebool) to get the address of the extension mapped to the function selector being
1186
+
Calls [`_getExtensionAndFowardValue`](#_getextensionandfowardvalue) to get the address of the extension mapped to the function selector being
1187
1187
called on the account. If there is no extension, the `address(0)` will be returned.
1188
1188
Forwards the value sent with the call to the extension if the function selector is mapped to a payable extension.
1189
1189
Reverts if there is no extension for the function being called, except for the `bytes4(0)` function selector, which passes even if there is no extension for it.
0 commit comments