Commit 49c1d3fc authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

contracts-bedrock: standardize internal function naming

Co-authored-by: default avatarMaurelian <maurelian@protonmail.ch>
parent 67aadc92
......@@ -132,7 +132,7 @@ contract Bytes_toNibbles_Test is Test {
*
* @return Yul version of `toNibbles` applied to `_bytes`.
*/
function toNibblesYul(bytes memory _bytes) internal pure returns (bytes memory) {
function _toNibblesYul(bytes memory _bytes) internal pure returns (bytes memory) {
// Allocate memory for the `nibbles` array.
bytes memory nibbles = new bytes(_bytes.length << 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment