Eric Mastro 407d51bc9a
Refactor to data access layer
Create a DAL lib with a Database struct that contains all tables and relationships. Referential integrity is guaranteed.
2022-12-01 15:53:28 +11:00

18 lines
319 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Utils.sol";
// exposes public functions for testing
contract TestUtils {
function resize(bytes32[] memory array,
uint8 newSize)
public
pure
returns (bytes32[] memory)
{
return Utils.resize(array, newSize);
}
}