Created
August 28, 2021 03:52
-
-
Save luckyyang/1422c6125a74af985127e00ee3c11ecf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
contract D { | |
uint public realN; | |
address public realSender; | |
function delegatecallSetN(address _e, uint _n) public { | |
_e.delegatecall(bytes4(keccak256("setN(uint256)")), _n); // D's storage is set, E is not modified | |
} | |
} | |
contract E { | |
uint public n; | |
address public sender; | |
function setN(uint _n) public { | |
n = _n; | |
sender = msg.sender; | |
// msg.sender is D if invoked by D's callcodeSetN. None of E's storage is updated | |
// msg.sender is C if invoked by C.foo(). None of E's storage is updated | |
// the value of "this" is D, when invoked by either D's callcodeSetN or C.foo() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment