{
    "Function": "_getPrefixedRevertMsg",
    "File": "contracts/helpers/RevertDebug.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()",
        "_getRevertMsgFromRes"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getPrefixedRevertMsg(bytes memory _res) internal pure returns (string memory) {\n        string memory _revertMsg = _getRevertMsgFromRes(_res);\n        return string(abi.encodePacked(CALL_REVERT_PREFIX, _revertMsg));\n    }"
}