From a7750c929b926d164195fd4f7a7e2b4642c66173 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 8 Apr 2015 20:45:39 +0200 Subject: Fixed tests to reflect log changes --- rpc/responses_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rpc') diff --git a/rpc/responses_test.go b/rpc/responses_test.go index e04a064ce..66323e5f5 100644 --- a/rpc/responses_test.go +++ b/rpc/responses_test.go @@ -217,7 +217,7 @@ func TestNewLogRes(t *testing.T) { } func TestNewLogsRes(t *testing.T) { - logs := make([]state.Log, 3) + logs := make([]*state.Log, 3) logs[0] = makeStateLog(1) logs[1] = makeStateLog(2) logs[2] = makeStateLog(3) @@ -235,7 +235,7 @@ func TestNewLogsRes(t *testing.T) { } -func makeStateLog(num int) state.Log { +func makeStateLog(num int) *state.Log { address := common.HexToAddress("0x0") data := []byte{1, 2, 3} number := uint64(num) -- cgit v1.2.3