You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 11, 2025. It is now read-only.
println_display(config,"recipient-is-ata-owner is now the default behavior. The option has been deprecated and will be removed in a future release.".to_string());
3871
3874
}
3872
3875
let use_unchecked_instruction = arg_matches.is_present("use_unchecked_instruction");
3873
-
let expected_fee = arg_matches.get_one::<f64>("expected_fee").copied();
3876
+
let expected_fee = arg_matches
3877
+
.get_one::<String>("expected_fee")
3878
+
.map(|str| str.parse::<f64>().unwrap());// unwrap safe since inputs are validated
3874
3879
let memo = value_t!(arg_matches,"memo",String).ok();
3875
3880
let transfer_hook_accounts = arg_matches.values_of("transfer_hook_account").map(|v| {
0 commit comments