Skip to content

Commit

Permalink
fix crate airdrop (#4232)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg authored Oct 11, 2024
1 parent 686b73f commit 3fe684d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions cmd/airdrop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ futures-retry = { workspace = true }
futures-util = { workspace = true }
hex = { workspace = true }
jsonrpc-core-client = { workspace = true }
move-core-types = { workspace = true }
rpassword = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cmd/airdrop/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use anyhow::Result;
use bcs_ext::BCSCodec;
use clap::Parser;
use jsonrpc_core_client::{RpcChannel, RpcError};
use move_core_types::move_resource::MoveStructType;
use serde::Deserialize;
use starcoin_crypto::{HashValue, ValidCryptoMaterialStringExt};
use starcoin_rpc_api::types::{ResourceView, TransactionInfoView, TransactionStatusView};
Expand All @@ -22,7 +23,6 @@ use starcoin_types::transaction::{EntryFunction, RawUserTransaction};
use starcoin_vm_types::account_config::auto_accept_token::AutoAcceptToken;
use starcoin_vm_types::account_config::{stc_type_tag, BalanceResource, G_STC_TOKEN_CODE};
use starcoin_vm_types::language_storage::{StructTag, TypeTag};
use starcoin_vm_types::move_resource::MoveResource;
use starcoin_vm_types::token::token_code::TokenCode;
use starcoin_vm_types::transaction::SignedUserTransaction;
use starcoin_vm_types::value::MoveValue;
Expand Down

0 comments on commit 3fe684d

Please sign in to comment.