mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-01-10 11:55:44 +00:00
11 lines
215 B
Solidity
11 lines
215 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "./Endian.sol";
|
|
|
|
contract TestEndian is Endian {
|
|
function byteSwap(bytes32 input) public pure returns (bytes32) {
|
|
return _byteSwap(input);
|
|
}
|
|
}
|