From be681fed9269de23037303fe37bb7f96c68016a3 Mon Sep 17 00:00:00 2001 From: "Joshua Marchand (JSHy)" <79121297+yHSJ@users.noreply.github.com> Date: Fri, 2 Aug 2024 13:39:49 -0400 Subject: [PATCH] chore(txbuilder): export ExUnits to make them accessible from outside (#497) --- pallas-txbuilder/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pallas-txbuilder/src/lib.rs b/pallas-txbuilder/src/lib.rs index 7ecdafe8..0c3fc595 100644 --- a/pallas-txbuilder/src/lib.rs +++ b/pallas-txbuilder/src/lib.rs @@ -2,7 +2,9 @@ mod babbage; mod transaction; pub use babbage::BuildBabbage; -pub use transaction::model::{BuiltTransaction, Input, Output, ScriptKind, StagingTransaction}; +pub use transaction::model::{ + BuiltTransaction, ExUnits, Input, Output, ScriptKind, StagingTransaction, +}; #[derive(Debug, Clone, PartialEq, thiserror::Error)] pub enum TxBuilderError {