Add codecov.yml allowing coverage to drop slightly before "failing"
[rust-lightning] / lightning-c-bindings / src / util / errors.rs
index 0ed0cf296683cb64c521427d25ac3854e44ac63d..9b0e757de971217a60fdb9925872f3a1bbd68f6a 100644 (file)
@@ -33,7 +33,7 @@ pub enum APIError {
        ChannelUnavailable {
                err: crate::c_types::derived::CVec_u8Z,
        },
-       /// An attempt to call add/update_monitor returned an Err (ie you did this!), causing the
+       /// An attempt to call watch/update_channel returned an Err (ie you did this!), causing the
        /// attempted action to fail.
        MonitorUpdateFailed,
 }
@@ -160,3 +160,7 @@ impl APIError {
 }
 #[no_mangle]
 pub extern "C" fn APIError_free(this_ptr: APIError) { }
+#[no_mangle]
+pub extern "C" fn APIError_clone(orig: &APIError) -> APIError {
+       orig.clone()
+}