Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Sep 17, 2024
1 parent c66425d commit 5379176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/config/sign_with.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::{
};
use clap::arg;
use soroban_env_host::xdr::WriteXdr;
use soroban_sdk::xdr::{self, Limits};
use soroban_sdk::xdr::Limits;
use stellar_strkey::ed25519::PublicKey;
use url::Url;

Expand Down Expand Up @@ -105,7 +105,7 @@ impl Args {
tx_env: TransactionEnvelope,
network: &Network,
) -> Result<TransactionEnvelope, Error> {
Ok(sign_txn_env(signer, source_account, tx_env, &network).await?)
Ok(sign_txn_env(signer, source_account, tx_env, network).await?)
}

pub fn source_account(&self, locator: &locator::Args) -> Result<PublicKey, Error> {
Expand Down

0 comments on commit 5379176

Please sign in to comment.