diff --git a/wallet/wallet_test.go b/wallet/wallet_test.go index 4330b15..b66a88e 100644 --- a/wallet/wallet_test.go +++ b/wallet/wallet_test.go @@ -196,12 +196,3 @@ func TestBLSSign(t *testing.T) { require.False(t, result) }) } - -type DummyStream struct { -} - -func (d DummyStream) XORKeyStream(dst, src []byte) { - for i := range dst { - dst[i] = 0 - } -}