From 156e86ea1d3df1f5cd5ba524cb48eec265bc079a Mon Sep 17 00:00:00 2001 From: Armin Sabouri Date: Tue, 19 May 2026 13:56:16 -0400 Subject: [PATCH] Remove reciever wordings from global ffi error type This error type can and is shared by the sender. --- payjoin-ffi/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payjoin-ffi/src/error.rs b/payjoin-ffi/src/error.rs index 303586a27..b30cdbe47 100644 --- a/payjoin-ffi/src/error.rs +++ b/payjoin-ffi/src/error.rs @@ -1,6 +1,6 @@ use std::error; -/// Error arising due to the specific receiver implementation +/// Error arising due to the specific application implementation /// /// e.g. database errors, network failures, wallet errors #[derive(Debug, thiserror::Error, uniffi::Object)]