error in CachedMessage is AnkError

This commit is contained in:
Sosthene 2024-05-27 11:55:41 +02:00
parent 6492952dc0
commit 70bc03da9e

View File

@ -296,7 +296,7 @@ pub struct CachedMessage {
pub key: Option<String>, // Never None when message sent
pub confirmed_by: Option<OutPoint>, // If this None, Sender keeps sending
pub timestamp: u64,
pub error: Option<String>,
pub error: Option<AnkError>,
}
impl CachedMessage {