Merge pull request #47 from TheBlueMatt/main
[ldk-java] / src / main / java / org / ldk / structs / RouteHop.java
index 9434554027f4999b3238d75657ba080bd8604953..a8d0e9ffd0f77ccdec80942630e3c097cfb77a22 100644 (file)
@@ -52,7 +52,6 @@ public class RouteHop extends CommonBase {
         */
        public void set_node_features(NodeFeatures val) {
                bindings.RouteHop_set_node_features(this.ptr, val == null ? 0 : val.ptr & ~1);
-               this.ptrs_to.add(val);
        }
 
        /**
@@ -88,7 +87,6 @@ public class RouteHop extends CommonBase {
         */
        public void set_channel_features(ChannelFeatures val) {
                bindings.RouteHop_set_channel_features(this.ptr, val == null ? 0 : val.ptr & ~1);
-               this.ptrs_to.add(val);
        }
 
        /**
@@ -135,8 +133,6 @@ public class RouteHop extends CommonBase {
                if (ret < 1024) { return null; }
                RouteHop ret_hu_conv = new RouteHop(null, ret);
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
-               ret_hu_conv.ptrs_to.add(node_features_arg);
-               ret_hu_conv.ptrs_to.add(channel_features_arg);
                return ret_hu_conv;
        }
 
@@ -151,6 +147,25 @@ public class RouteHop extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Checks if two RouteHops contain equal inner contents.
+        */
+       public long hash() {
+               long ret = bindings.RouteHop_hash(this.ptr);
+               return ret;
+       }
+
+       /**
+        * Checks if two RouteHops 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(RouteHop b) {
+               boolean ret = bindings.RouteHop_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               this.ptrs_to.add(b);
+               return ret;
+       }
+
        /**
         * Serialize the RouteHop object into a byte array which can be read by RouteHop_read
         */