Commit 9e366fb3 authored by George Hotz's avatar George Hotz

no console.log

parent f622649e
......@@ -6,8 +6,6 @@ import { Lib_BytesUtils } from "./Lib_BytesUtils.sol";
import { Lib_RLPReader } from "./Lib_RLPReader.sol";
import { Lib_RLPWriter } from "./Lib_RLPWriter.sol";
import "hardhat/console.sol";
/**
* @title Lib_MerkleTrie
*/
......@@ -333,7 +331,6 @@ library Lib_MerkleTrie {
// Most of our logic depends on the status of the last node in the path.
TrieNode memory lastNode = _path[_pathLength - 1];
NodeType lastNodeType = _getNodeType(lastNode);
console.log(uint256(lastNodeType));
// Create an array for newly created nodes.
// We need up to three new nodes, depending on the contents of the last node.
......
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