Skip to content

Commit

Permalink
Merge pull request #9 from gotabit:remove_ref_sk
Browse files Browse the repository at this point in the history
feat(cli): Remove ref sk
  • Loading branch information
jacksoom authored Oct 7, 2023
2 parents f42728e + 1dd56b2 commit 191e293
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grpc-client/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ impl GrpcClient {
#[allow(clippy::too_many_arguments)]
pub async fn broadcast_tx_sync<T>(
&mut self,
sign_key: &SigningKey,
sign_key: SigningKey,
addr: &String,
msg: T,
coin: &Coin,
Expand Down
2 changes: 1 addition & 1 deletion grpc-client/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async fn test_submit_tx() {

let resp = client
.broadcast_tx_sync(
&sender_private_key,
sender_private_key,
&sender_account_id.to_string(),
msg_send,
&coin,
Expand Down

0 comments on commit 191e293

Please sign in to comment.