mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-23 00:18:01 +00:00
532721f3be
Signed-off-by: xermicus <cyrill@parity.io>
10 lines
184 B
Solidity
10 lines
184 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
contract MCopy {
|
|
function memcpy(bytes memory payload) public pure returns (bytes memory) {
|
|
return payload;
|
|
}
|
|
}
|