From 0f6fdf7f2103689433eb258c14f9784e2d7f33fd Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Tue, 13 Nov 2018 10:55:28 +0100 Subject: [PATCH] Fix integration tests --- tests/rpc/rpc.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/rpc/rpc.go b/tests/rpc/rpc.go index b5f2216d..ea633c77 100644 --- a/tests/rpc/rpc.go +++ b/tests/rpc/rpc.go @@ -166,6 +166,8 @@ func testGetTransaction(t *testing.T, h *TestHandler) { continue } got.Confirmations = 0 + // CoinSpecificData are not specified in the fixtures + got.CoinSpecificData = nil if !reflect.DeepEqual(got, want) { t.Errorf("GetTransaction() got %+v, want %+v", got, want)