From 9049bcaceccfcbe02e5c4b79e1d661c60866c0d7 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Tue, 10 Sep 2013 10:47:49 -0500 Subject: [PATCH] Update error message for zero hash change. --- ldb/boundary_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldb/boundary_test.go b/ldb/boundary_test.go index 198fb87b..dc0bdd06 100644 --- a/ldb/boundary_test.go +++ b/ldb/boundary_test.go @@ -36,7 +36,7 @@ func TestEmptyDB(t *testing.T) { sha, height, err := db.NewestSha() if !sha.IsEqual(&btcwire.ShaHash{}) { - t.Errorf("sha not nil") + t.Errorf("sha not zero hash") } if height != -1 { t.Errorf("height not -1 %v", height)