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: contracts/LSP0ERC725Account/LSP0ERC725AccountCore.sol
+22-11
Original file line number
Diff line number
Diff line change
@@ -765,8 +765,9 @@ abstract contract LSP0ERC725AccountCore is
765
765
/**
766
766
* @dev Forwards the call to an extension mapped to a function selector.
767
767
*
768
-
* Calls {_getExtension} to get the address of the extension mapped to the function selector being
768
+
* Calls {_getExtensionAndPayableBool} to get the address of the extension mapped to the function selector being
769
769
* called on the account. If there is no extension, the `address(0)` will be returned.
770
+
* Forwards the value sent with the call to the extension if the function selector is mapped to a payable extension.
770
771
*
771
772
* 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.
772
773
*
@@ -786,7 +787,9 @@ abstract contract LSP0ERC725AccountCore is
Copy file name to clipboardExpand all lines: contracts/LSP9Vault/LSP9VaultCore.sol
+24-10
Original file line number
Diff line number
Diff line change
@@ -528,8 +528,9 @@ contract LSP9VaultCore is
528
528
/**
529
529
* @dev Forwards the call to an extension mapped to a function selector.
530
530
*
531
-
* Calls {_getExtension} to get the address of the extension mapped to the function selector being
531
+
* Calls {_getExtensionAndPayableBool} to get the address of the extension mapped to the function selector being
532
532
* called on the account. If there is no extension, the `address(0)` will be returned.
533
+
* Forwards the value if the extension is payable.
533
534
*
534
535
* 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