Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete async when new wallet context in sui sdk #16459

Merged
merged 5 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix clippy test error
  • Loading branch information
ccbond authored and Hgamiui9 committed Mar 11, 2024
commit 12503b4be16dfd58c6770bae8c0b661a951f3932
2 changes: 1 addition & 1 deletion crates/sui-cluster-test/src/faucet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use sui_faucet::{
};
use sui_types::base_types::SuiAddress;
use sui_types::crypto::KeypairTraits;
use tracing::{debug, info, info_span, Instrument};
use tracing::{debug, info};
use uuid::Uuid;

pub struct FaucetClientFactory;
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-cluster-test/src/wallet_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use sui_sdk::{SuiClient, SuiClientBuilder};
use sui_types::base_types::SuiAddress;
use sui_types::crypto::{KeypairTraits, Signature};
use sui_types::transaction::TransactionData;
use tracing::{info, info_span, Instrument};
use tracing::info;

pub struct WalletClient {
wallet_context: WalletContext,
Expand Down
Loading