aboutsummaryrefslogtreecommitdiff
path: root/shard
diff options
context:
space:
mode:
Diffstat (limited to 'shard')
-rw-r--r--shard/lib/data/merklesearchtree.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/shard/lib/data/merklesearchtree.ex b/shard/lib/data/merklesearchtree.ex
index 941d31d..039f6ce 100644
--- a/shard/lib/data/merklesearchtree.ex
+++ b/shard/lib/data/merklesearchtree.ex
@@ -358,7 +358,7 @@ defmodule SData.MerkleSearchTree do
defp dump(store, root, lvl) do
case root do
nil ->
- IO.puts(lvl <> "nil")
+ nil
_ ->
%Page{ level: level, low: low, list: lst} = Store.get(store, root)
IO.puts(lvl <> "#{root|>Base.encode16} (#{level})")