From a65ab7803e3e0ce16e3d0f5141aed8636b58c738 Mon Sep 17 00:00:00 2001 From: Kayos Date: Thu, 7 May 2026 06:21:33 -0700 Subject: [PATCH] chore(mcp): drop unused build_signed_payment_with_assets / build_unsigned_payment_with_assets imports Replaced direct calls in wallet_send + wallet_send_unsigned with the new _extras variants in the previous commit. The _with_assets re-exports are still in aldabra-core::lib.rs for any other callers, just not imported into tools.rs anymore. --- crates/aldabra-mcp/src/tools.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/crates/aldabra-mcp/src/tools.rs b/crates/aldabra-mcp/src/tools.rs index d8cc914..a1a6675 100644 --- a/crates/aldabra-mcp/src/tools.rs +++ b/crates/aldabra-mcp/src/tools.rs @@ -52,11 +52,10 @@ use aldabra_dao::reader::{DaoReader, KoiosDaoReader}; use aldabra_core::plutus_cost_models::PLUTUS_V3_COST_MODEL_PREPROD; use aldabra_core::{ add_witness, build_signed_cip68_nft_mint, build_signed_mint_with_metadata, - build_signed_payment_extras, build_signed_payment_with_assets, build_signed_plutus_spend, - build_signed_stake_delegation, build_unsigned_mint, build_unsigned_payment_extras, - build_unsigned_payment_with_assets, hex_decode, summarize_tx, AssetSpec, InputUtxo, Network, - PaymentKey, PlutusExUnits, PlutusInput, PlutusVersion, PolicySpec, ProtocolParams, - ReferenceScriptSpec, ScriptKind, StakeKey, DEFAULT_EX_UNITS, + build_signed_payment_extras, build_signed_plutus_spend, build_signed_stake_delegation, + build_unsigned_mint, build_unsigned_payment_extras, hex_decode, summarize_tx, AssetSpec, + InputUtxo, Network, PaymentKey, PlutusExUnits, PlutusInput, PlutusVersion, PolicySpec, + ProtocolParams, ReferenceScriptSpec, ScriptKind, StakeKey, DEFAULT_EX_UNITS, }; /// Parse a user-supplied script-kind string ("PlutusV1" / "PlutusV2"