Skip to content

Commit

Permalink
Fix visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed May 30, 2024
1 parent 5dfee17 commit f72a3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Encoder.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ library Encoder {
return abi.encode(receiver, value, data);
}

function decodeFunctionCall(bytes calldata data) private pure returns (FunctionCall memory functionCall) {
function decodeFunctionCall(bytes calldata data) internal pure returns (FunctionCall memory functionCall) {
(functionCall.receiver, functionCall.value, functionCall.data) = abi.decode(data, (address, uint256, bytes));
}

Expand Down

0 comments on commit f72a3e7

Please sign in to comment.