2021-02-18 18:33:05 +00:00
|
|
|
contract Other {
|
|
|
|
constructor() payable {
|
|
|
|
}
|
|
|
|
function getAddress() public returns (address) {
|
|
|
|
return address(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
contract ClientReceipt {
|
|
|
|
Other other;
|
|
|
|
constructor() payable {
|
|
|
|
other = new Other{value:500}();
|
|
|
|
}
|
|
|
|
function getAddress() public returns (address) {
|
|
|
|
return other.getAddress();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
|
|
|
// compileViaYul: also
|
|
|
|
// ----
|
|
|
|
// constructor(), 2000 wei ->
|
2022-02-16 12:03:39 +00:00
|
|
|
// gas irOptimized: 188162
|
2021-11-15 15:19:33 +00:00
|
|
|
// gas legacy: 235195
|
|
|
|
// gas legacyOptimized: 176766
|
2021-02-18 18:33:05 +00:00
|
|
|
// balance -> 1500
|
|
|
|
// gas irOptimized: 191881
|
|
|
|
// gas legacy: 235167
|
|
|
|
// gas legacyOptimized: 180756
|
|
|
|
// getAddress() -> 0xf01f7809444bd9a93a854361c6fae3f23d9e23db
|
|
|
|
// balance: 0xf01f7809444bd9a93a854361c6fae3f23d9e23db -> 500
|