X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FQueryChannelRange.java;h=30095f035d9da7467d641b7a0f983611d3e03f64;hb=ffdd56c967087cba7548599934585b8a9a3102e2;hp=238aa7fd40c32689f5136ec0b106c63166751fc7;hpb=5e9de82b3a7712a41189756d9d16d946142b2ac5;p=ldk-java diff --git a/src/main/java/org/ldk/structs/QueryChannelRange.java b/src/main/java/org/ldk/structs/QueryChannelRange.java index 238aa7fd..30095f03 100644 --- a/src/main/java/org/ldk/structs/QueryChannelRange.java +++ b/src/main/java/org/ldk/structs/QueryChannelRange.java @@ -9,10 +9,12 @@ import javax.annotation.Nullable; /** - * A query_channel_range message is used to query a peer for channel + * A [`query_channel_range`] message is used to query a peer for channel * UTXOs in a range of blocks. The recipient of a query makes a best - * effort to reply to the query using one or more reply_channel_range + * effort to reply to the query using one or more [`ReplyChannelRange`] * messages. + * + * [`query_channel_range`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#the-query_channel_range-and-reply_channel_range-messages */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class QueryChannelRange extends CommonBase { @@ -109,13 +111,25 @@ public class QueryChannelRange extends CommonBase { return ret_hu_conv; } + /** + * Generates a non-cryptographic 64-bit hash of the QueryChannelRange. + */ + public long hash() { + long ret = bindings.QueryChannelRange_hash(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + @Override public int hashCode() { + return (int)this.hash(); + } /** * Checks if two QueryChannelRanges contain equal inner contents. * This ignores pointers and is_owned flags and looks at the values in fields. * Two objects with NULL inner values will be considered "equal" here. */ - public boolean eq(QueryChannelRange b) { - boolean ret = bindings.QueryChannelRange_eq(this.ptr, b == null ? 0 : b.ptr); + public boolean eq(org.ldk.structs.QueryChannelRange b) { + boolean ret = bindings.QueryChannelRange_eq(this.ptr, b.ptr); Reference.reachabilityFence(this); Reference.reachabilityFence(b); if (this != null) { this.ptrs_to.add(b); }; @@ -127,7 +141,9 @@ public class QueryChannelRange extends CommonBase { return this.eq((QueryChannelRange)o); } /** - * \n\t * Calculates the overflow safe ending block height for the query.\n\t * Overflow returns `0xffffffff`, otherwise returns `first_blocknum + number_of_blocks`\n\t + * Calculates the overflow safe ending block height for the query. + * + * Overflow returns `0xffffffff`, otherwise returns `first_blocknum + number_of_blocks`. */ public int end_blocknum() { int ret = bindings.QueryChannelRange_end_blocknum(this.ptr);