File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " phoenix-cli"
3- version = " 0.3.4 "
3+ version = " 0.3.5 "
44description = " CLI and associated library for interacting with the Phoenix program from the command line"
55edition = " 2021"
66license = " MIT"
@@ -33,7 +33,7 @@ spl-token = { version = "3.2.0", features = ["no-entrypoint"] }
3333serde = { version = " 1.0" , features = [" derive" ] }
3434serde_json = " 1.0"
3535spl-associated-token-account = { version = " 1.1.1" , features = [ " no-entrypoint" ] }
36- phoenix-v1 = { version = " 0.2.2" , features = [" no-entrypoint" ] }
36+ phoenix-v1 = { version = " = 0.2.2" , features = [" no-entrypoint" ] }
3737phoenix-sdk = " 0.4.2"
3838bytemuck = " 1.13.0"
3939reqwest = " 0.11.14"
Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ async fn main() -> anyhow::Result<()> {
6060 } ;
6161 let commitment =
6262 ConfigInput :: compute_commitment_config ( "" , & cli. commitment . unwrap_or ( config. commitment ) ) . 1 ;
63- let payer = get_payer_keypair_from_path ( & cli. keypair_path . unwrap_or ( config. keypair_path ) ) ?;
63+ let payer = get_payer_keypair_from_path ( & cli. keypair_path . unwrap_or ( config. keypair_path ) )
64+ . expect ( "Keypair file does not exist. Please run `solana-keygen new`" ) ;
6465 let network_url = & get_network ( & cli. url . unwrap_or ( config. json_rpc_url ) ) . to_string ( ) ;
6566 let client = EllipsisClient :: from_rpc (
6667 RpcClient :: new_with_commitment ( network_url. to_string ( ) , commitment) ,
You can’t perform that action at this time.
0 commit comments