Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fetch zap invoice #781

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions crates/notedeck/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,21 @@ pub enum Error {

#[error("generic error: {0}")]
Generic(String),

#[error("zaps error: {0}")]
Zap(#[from] ZapError),
}

#[derive(Debug, thiserror::Error)]
pub enum ZapError {
#[error("invalid lud16")]
InvalidLud16(String),
#[error("invalid endpoint response")]
EndpointError(String),
#[error("bech encoding/decoding error")]
Bech(String),
#[error("serialization/deserialization problem")]
Serialization(String),
}

impl From<String> for Error {
Expand Down
2 changes: 1 addition & 1 deletion crates/notedeck/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub use accounts::{AccountData, Accounts, AccountsAction, AddAccountAction, Swit
pub use app::{App, Notedeck};
pub use args::Args;
pub use context::AppContext;
pub use error::{Error, FilterError};
pub use error::{Error, FilterError, ZapError};
pub use filter::{FilterState, FilterStates, UnifiedSubscription};
pub use fonts::NamedFontFamily;
pub use imgcache::{
Expand Down
1 change: 1 addition & 0 deletions crates/notedeck_columns/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ mod timeline;
pub mod ui;
mod unknowns;
mod view_state;
mod zaps;

#[cfg(test)]
#[macro_use]
Expand Down
Loading