From 56d36c8f25629e7c707439dffc7bc7b10a5de031 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Fri, 21 Apr 2017 16:04:58 -0400 Subject: [PATCH] merkle: go-common -> tmlibs --- merkle/simple_tree.go | 2 +- merkle/simple_tree_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/merkle/simple_tree.go b/merkle/simple_tree.go index 51733144..b5520f72 100644 --- a/merkle/simple_tree.go +++ b/merkle/simple_tree.go @@ -31,7 +31,7 @@ import ( "golang.org/x/crypto/ripemd160" - . "github.com/tendermint/go-common" + . "github.com/tendermint/tmlibs/common" "github.com/tendermint/go-wire" ) diff --git a/merkle/simple_tree_test.go b/merkle/simple_tree_test.go index 424b498f..6299fa33 100644 --- a/merkle/simple_tree_test.go +++ b/merkle/simple_tree_test.go @@ -3,8 +3,8 @@ package merkle import ( "bytes" - . "github.com/tendermint/go-common" - . "github.com/tendermint/go-common/test" + . "github.com/tendermint/tmlibs/common" + . "github.com/tendermint/tmlibs/test" "testing" )