From 1d454c03f3ecbd8b7c990045c8e20f96d209fdb6 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Tue, 3 Sep 2013 14:24:18 +0200 Subject: [PATCH] Suppress annoying and useless warning. --- .../java/com/google/bitcoin/core/MemoryPoolMessage.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/src/main/java/com/google/bitcoin/core/MemoryPoolMessage.java b/core/src/main/java/com/google/bitcoin/core/MemoryPoolMessage.java index ca90ff74..571a7f51 100644 --- a/core/src/main/java/com/google/bitcoin/core/MemoryPoolMessage.java +++ b/core/src/main/java/com/google/bitcoin/core/MemoryPoolMessage.java @@ -16,6 +16,9 @@ package com.google.bitcoin.core; +import java.io.IOException; +import java.io.OutputStream; + /** * The "mempool" message asks a remote peer to announce all transactions in its memory pool, possibly restricted by * any Bloom filter set on the connection. The list of transaction hashes comes back in an inv message. Note that @@ -29,4 +32,7 @@ public class MemoryPoolMessage extends Message { @Override protected void parseLite() throws ProtocolException {} + + @Override + void bitcoinSerializeToStream(OutputStream stream) throws IOException {} }