fix(txbuilder): sign transactions using Conway era (#531)

This commit is contained in:
Santiago Carmuega 2024-10-24 16:17:34 -03:00 committed by GitHub
parent a29a6cf50f
commit 3adc16b798
5 changed files with 45 additions and 21 deletions

View file

@ -1,8 +1,8 @@
mod babbage;
mod conway;
mod scriptdata;
mod transaction;
pub use babbage::BuildBabbage;
pub use conway::BuildConway;
pub use transaction::model::{
BuiltTransaction, ExUnits, Input, Output, ScriptKind, StagingTransaction,
};
@ -34,4 +34,7 @@ pub enum TxBuilderError {
/// Asset name is too long, it must be 32 bytes or less
#[error("Asset name must be 32 bytes or less")]
AssetNameTooLong,
/// Unsupported era
#[error("Unsupported era")]
UnsupportedEra,
}