Skip to content

Commit

Permalink
Random update to integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
djordon committed Oct 7, 2024
1 parent 7b45984 commit 2274668
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions signer/tests/integration/contracts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ use tokio::sync::OnceCell;

use signer::stacks;
use signer::stacks::api::FeePriority;
use signer::stacks::api::RejectionReason;
use signer::stacks::api::StacksClient;
use signer::stacks::api::SubmitTxResponse;
use signer::stacks::api::TxRejection;
use signer::stacks::contracts::CompleteDepositV1;
use signer::stacks::wallet::MultisigTx;
use signer::storage::in_memory::Store;
Expand Down Expand Up @@ -116,10 +114,6 @@ impl SignerStxState {

match self.stacks_client.submit_tx(&tx).await.unwrap() {
SubmitTxResponse::Acceptance(_) => (),
SubmitTxResponse::Rejection(TxRejection {
reason: RejectionReason::ContractAlreadyExists,
..
}) => (),
SubmitTxResponse::Rejection(err) => panic!("{}", serde_json::to_string(&err).unwrap()),
}
}
Expand Down

0 comments on commit 2274668

Please sign in to comment.