{
    "Function": "_getRevertMsgFromRes",
    "File": "contracts/helpers/RevertDebug.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.decode()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getRevertMsgFromRes(bytes memory _res) internal pure returns (string memory) {\n        // If the _res length is less than 68, then the transaction failed silently (without a revert message)\n        if (_res.length < 68) return \"No revert msg\";\n        return abi.decode(_res, (string)); // All that remains is the revert string\n    }"
}