Skip to content

Latest commit

 

History

History
139 lines (122 loc) · 4.03 KB

Context.md

File metadata and controls

139 lines (122 loc) · 4.03 KB

Context.sol

View Source: @openzeppelin/contracts/utils/Context.sol

↘ Derived Contracts: ERC20

Context

Functions


_msgSender

function _msgSender() internal view
returns(address payable)
Source Code
function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

_msgData

function _msgData() internal view
returns(bytes)
Source Code
function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }

Contracts