mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-14 19:25:51 +00:00
Suppress annoying and useless warning.
This commit is contained in:
parent
e05abe150b
commit
1d454c03f3
@ -16,6 +16,9 @@
|
|||||||
|
|
||||||
package com.google.bitcoin.core;
|
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
|
* 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
|
* 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
|
@Override
|
||||||
protected void parseLite() throws ProtocolException {}
|
protected void parseLite() throws ProtocolException {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
void bitcoinSerializeToStream(OutputStream stream) throws IOException {}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user