use thiserror::Error;
#[derive(Error, Debug)]
pub enum TxBuilderError {
#[error("BIP32 Error: {0}")]
BIP32Error(#[from] bip32::Error),
#[error("Cosmrs Error: {0}")]
CosmrsError(#[from] cosmrs::Error),
#[error("Cosmrs Error Report: {0}")]
CosmrsErrorReport(#[from] cosmrs::ErrorReport),
#[error("Tx Fees not set")]
FeesNotSet,
}