@@ -1517,6 +1517,8 @@ internal typealias UniffiVTableCallbackInterfaceVssHeaderProviderUniffiByValue =
15171517
15181518
15191519
1520+
1521+
15201522
15211523
15221524
@@ -1971,6 +1973,11 @@ internal interface UniffiLib : Library {
19711973 `headerProvider`: Pointer?,
19721974 uniffiCallStatus: UniffiRustCallStatus,
19731975 ): Pointer?
1976+ fun uniffi_ldk_node_fn_method_builder_set_accept_stale_channel_monitors(
1977+ `ptr`: Pointer?,
1978+ `accept`: Byte,
1979+ uniffiCallStatus: UniffiRustCallStatus,
1980+ ): Unit
19741981 fun uniffi_ldk_node_fn_method_builder_set_address_type(
19751982 `ptr`: Pointer?,
19761983 `addressType`: RustBufferByValue,
@@ -3123,6 +3130,8 @@ internal interface UniffiLib : Library {
31233130 ): Short
31243131 fun uniffi_ldk_node_checksum_method_builder_build_with_vss_store_and_header_provider(
31253132 ): Short
3133+ fun uniffi_ldk_node_checksum_method_builder_set_accept_stale_channel_monitors(
3134+ ): Short
31263135 fun uniffi_ldk_node_checksum_method_builder_set_address_type(
31273136 ): Short
31283137 fun uniffi_ldk_node_checksum_method_builder_set_address_types_to_monitor(
@@ -3614,6 +3623,9 @@ private fun uniffiCheckApiChecksums(lib: UniffiLib) {
36143623 if (lib.uniffi_ldk_node_checksum_method_builder_build_with_vss_store_and_header_provider() != 9090.toShort()) {
36153624 throw RuntimeException("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
36163625 }
3626+ if (lib.uniffi_ldk_node_checksum_method_builder_set_accept_stale_channel_monitors() != 25727.toShort()) {
3627+ throw RuntimeException("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
3628+ }
36173629 if (lib.uniffi_ldk_node_checksum_method_builder_set_address_type() != 647.toShort()) {
36183630 throw RuntimeException("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
36193631 }
@@ -5780,6 +5792,18 @@ open class Builder: Disposable, BuilderInterface {
57805792 })
57815793 }
57825794
5795+ override fun `setAcceptStaleChannelMonitors`(`accept`: kotlin.Boolean) {
5796+ callWithPointer {
5797+ uniffiRustCall { uniffiRustCallStatus ->
5798+ UniffiLib.INSTANCE.uniffi_ldk_node_fn_method_builder_set_accept_stale_channel_monitors(
5799+ it,
5800+ FfiConverterBoolean.lower(`accept`),
5801+ uniffiRustCallStatus,
5802+ )
5803+ }
5804+ }
5805+ }
5806+
57835807 override fun `setAddressType`(`addressType`: AddressType) {
57845808 callWithPointer {
57855809 uniffiRustCall { uniffiRustCallStatus ->
0 commit comments