Skip to content

Instantly share code, notes, and snippets.

@luckyyang
Created August 28, 2021 03:52
Show Gist options
  • Save luckyyang/1422c6125a74af985127e00ee3c11ecf to your computer and use it in GitHub Desktop.
Save luckyyang/1422c6125a74af985127e00ee3c11ecf to your computer and use it in GitHub Desktop.
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