@@ -286,7 +286,7 @@ fn command_create_account(
286
286
)
287
287
} else {
288
288
let account = get_associated_token_address ( & config. owner , & token) ;
289
- println ! ( "Creating associated account for {}" , & config . owner ) ;
289
+ println ! ( "Creating account {}" , account ) ;
290
290
(
291
291
account,
292
292
true ,
@@ -443,7 +443,7 @@ fn command_transfer(
443
443
if account_data. owner == system_program:: id ( ) {
444
444
recipient_token_account = get_associated_token_address ( & recipient, & mint_pubkey) ;
445
445
println ! (
446
- "Recipient's associated token account: {}" ,
446
+ " Recipient associated token account: {}" ,
447
447
recipient_token_account
448
448
) ;
449
449
@@ -471,7 +471,7 @@ fn command_transfer(
471
471
. rpc_client
472
472
. get_minimum_balance_for_rent_exemption ( Account :: LEN ) ?;
473
473
println ! (
474
- "Funding recipient: {} ({} SOL)" ,
474
+ " Funding recipient: {} ({} SOL)" ,
475
475
recipient_token_account,
476
476
lamports_to_sol( minimum_balance_for_rent_exemption)
477
477
) ;
@@ -1162,7 +1162,7 @@ fn main() {
1162
1162
. help (
1163
1163
"Specify the account keypair. \
1164
1164
This may be a keypair file or the ASK keyword. \
1165
- [default: RANDOMLY GENERATED KEYPAIR ]"
1165
+ [default: associated token account for --owner ]"
1166
1166
) ,
1167
1167
)
1168
1168
. nonce_args ( true )
@@ -1351,7 +1351,7 @@ fn main() {
1351
1351
. value_name ( "RECIPIENT_TOKEN_ACCOUNT_ADDRESS" )
1352
1352
. takes_value ( true )
1353
1353
. index ( 3 )
1354
- . help ( "The token account address of recipient [default: associated token account]" ) ,
1354
+ . help ( "The token account address of recipient [default: associated token account for --owner ]" ) ,
1355
1355
)
1356
1356
. arg ( mint_decimals_arg ( ) )
1357
1357
. arg ( multisig_signer_arg ( ) )
0 commit comments