You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
732 B
Solidity
30 lines
732 B
Solidity
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "../utils/Context.sol";
|
||
|
|
||
|
contract ContextMock is Context {
|
||
|
event Sender(address sender);
|
||
|
|
||
|
function msgSender() public {
|
||
|
emit Sender(_msgSender());
|
||
|
}
|
||
|
|
||
|
event Data(bytes data, uint256 integerValue, string stringValue);
|
||
|
|
||
|
function msgData(uint256 integerValue, string memory stringValue) public {
|
||
|
emit Data(_msgData(), integerValue, stringValue);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
contract ContextMockCaller {
|
||
|
function callSender(ContextMock context) public {
|
||
|
context.msgSender();
|
||
|
}
|
||
|
|
||
|
function callData(ContextMock context, uint256 integerValue, string memory stringValue) public {
|
||
|
context.msgData(integerValue, stringValue);
|
||
|
}
|
||
|
}
|