2020-11-12 14:29:08 +00:00
|
|
|
contract c {
|
|
|
|
function set(uint key) public returns (bool) { data[key] = msg.data; return true; }
|
|
|
|
function copy(uint from, uint to) public returns (bool) { data[to] = data[from]; return true; }
|
|
|
|
mapping(uint => bytes) data;
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// set(uint256): 1, 2 -> true
|
2022-02-15 11:20:28 +00:00
|
|
|
// gas irOptimized: 110604
|
2022-03-07 18:13:35 +00:00
|
|
|
// gas legacy: 111088
|
|
|
|
// gas legacyOptimized: 110733
|
2020-11-12 14:29:08 +00:00
|
|
|
// set(uint256): 2, 2, 3, 4, 5 -> true
|
2022-02-15 11:20:28 +00:00
|
|
|
// gas irOptimized: 177564
|
2022-03-07 18:13:35 +00:00
|
|
|
// gas legacy: 178018
|
|
|
|
// gas legacyOptimized: 177663
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 0
|
2020-11-12 14:29:08 +00:00
|
|
|
// copy(uint256,uint256): 1, 2 -> true
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 0
|
2020-11-12 14:29:08 +00:00
|
|
|
// copy(uint256,uint256): 99, 1 -> true
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 0
|
2020-11-12 14:29:08 +00:00
|
|
|
// copy(uint256,uint256): 99, 2 -> true
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 1
|