mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-22 20:26:50 +00:00
Fix for NPE when serialized block bytes are unavailable.
This commit is contained in:
@@ -174,6 +174,9 @@ public class BlockArchiveReader {
|
||||
Integer height = this.fetchHeightForSignature(signature, repository);
|
||||
if (height != null) {
|
||||
byte[] blockBytes = this.fetchSerializedBlockBytesForHeight(height);
|
||||
if (blockBytes == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// When responding to a peer with a BLOCK message, we must prefix the byte array with the block height
|
||||
// This mimics the toData() method in BlockMessage and CachedBlockMessage
|
||||
|
Reference in New Issue
Block a user