CLI: Fix default nonce authority resolution (#7657)

automerge
This commit is contained in:
Trent Nelson 2020-01-02 20:05:08 -05:00 committed by Grimes
parent 73c6224a95
commit db52cc6749
5 changed files with 77 additions and 55 deletions

View File

@ -132,18 +132,18 @@ pub enum CliCommand {
// Nonce commands // Nonce commands
AuthorizeNonceAccount { AuthorizeNonceAccount {
nonce_account: Pubkey, nonce_account: Pubkey,
nonce_authority: KeypairEq, nonce_authority: Option<KeypairEq>,
new_authority: Pubkey, new_authority: Pubkey,
}, },
CreateNonceAccount { CreateNonceAccount {
nonce_account: KeypairEq, nonce_account: KeypairEq,
nonce_authority: Pubkey, nonce_authority: Option<Pubkey>,
lamports: u64, lamports: u64,
}, },
GetNonce(Pubkey), GetNonce(Pubkey),
NewNonce { NewNonce {
nonce_account: Pubkey, nonce_account: Pubkey,
nonce_authority: KeypairEq, nonce_authority: Option<KeypairEq>,
}, },
ShowNonceAccount { ShowNonceAccount {
nonce_account_pubkey: Pubkey, nonce_account_pubkey: Pubkey,
@ -151,7 +151,7 @@ pub enum CliCommand {
}, },
WithdrawFromNonceAccount { WithdrawFromNonceAccount {
nonce_account: Pubkey, nonce_account: Pubkey,
nonce_authority: KeypairEq, nonce_authority: Option<KeypairEq>,
destination_account_pubkey: Pubkey, destination_account_pubkey: Pubkey,
lamports: u64, lamports: u64,
}, },
@ -1190,13 +1190,13 @@ pub fn process_command(config: &CliConfig) -> ProcessResult {
// Assign authority to nonce account // Assign authority to nonce account
CliCommand::AuthorizeNonceAccount { CliCommand::AuthorizeNonceAccount {
nonce_account, nonce_account,
nonce_authority, ref nonce_authority,
new_authority, new_authority,
} => process_authorize_nonce_account( } => process_authorize_nonce_account(
&rpc_client, &rpc_client,
config, config,
nonce_account, nonce_account,
nonce_authority, nonce_authority.as_deref(),
new_authority, new_authority,
), ),
// Create nonce account // Create nonce account
@ -1208,7 +1208,7 @@ pub fn process_command(config: &CliConfig) -> ProcessResult {
&rpc_client, &rpc_client,
config, config,
nonce_account, nonce_account,
nonce_authority, *nonce_authority,
*lamports, *lamports,
), ),
// Get the current nonce // Get the current nonce
@ -1218,8 +1218,13 @@ pub fn process_command(config: &CliConfig) -> ProcessResult {
// Get a new nonce // Get a new nonce
CliCommand::NewNonce { CliCommand::NewNonce {
nonce_account, nonce_account,
nonce_authority, ref nonce_authority,
} => process_new_nonce(&rpc_client, config, nonce_account, nonce_authority), } => process_new_nonce(
&rpc_client,
config,
nonce_account,
nonce_authority.as_deref(),
),
// Show the contents of a nonce account // Show the contents of a nonce account
CliCommand::ShowNonceAccount { CliCommand::ShowNonceAccount {
nonce_account_pubkey, nonce_account_pubkey,
@ -1228,14 +1233,14 @@ pub fn process_command(config: &CliConfig) -> ProcessResult {
// Withdraw lamports from a nonce account // Withdraw lamports from a nonce account
CliCommand::WithdrawFromNonceAccount { CliCommand::WithdrawFromNonceAccount {
nonce_account, nonce_account,
nonce_authority, ref nonce_authority,
destination_account_pubkey, destination_account_pubkey,
lamports, lamports,
} => process_withdraw_from_nonce_account( } => process_withdraw_from_nonce_account(
&rpc_client, &rpc_client,
config, config,
&nonce_account, &nonce_account,
nonce_authority, nonce_authority.as_deref(),
&destination_account_pubkey, &destination_account_pubkey,
*lamports, *lamports,
), ),

View File

@ -208,20 +208,15 @@ impl NonceSubCommands for App<'_, '_> {
} }
} }
fn resolve_nonce_authority(matches: &ArgMatches<'_>) -> Keypair {
keypair_of(matches, "nonce_authority")
.unwrap_or_else(|| keypair_of(matches, "nonce_account_keypair").unwrap())
}
pub fn parse_authorize_nonce_account(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliError> { pub fn parse_authorize_nonce_account(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliError> {
let nonce_account = pubkey_of(matches, "nonce_account_keypair").unwrap(); let nonce_account = pubkey_of(matches, "nonce_account_keypair").unwrap();
let new_authority = pubkey_of(matches, "new_authority").unwrap(); let new_authority = pubkey_of(matches, "new_authority").unwrap();
let nonce_authority = resolve_nonce_authority(matches); let nonce_authority = keypair_of(matches, "nonce_authority").map(|kp| kp.into());
Ok(CliCommandInfo { Ok(CliCommandInfo {
command: CliCommand::AuthorizeNonceAccount { command: CliCommand::AuthorizeNonceAccount {
nonce_account, nonce_account,
nonce_authority: nonce_authority.into(), nonce_authority,
new_authority, new_authority,
}, },
require_keypair: true, require_keypair: true,
@ -231,8 +226,7 @@ pub fn parse_authorize_nonce_account(matches: &ArgMatches<'_>) -> Result<CliComm
pub fn parse_nonce_create_account(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliError> { pub fn parse_nonce_create_account(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliError> {
let nonce_account = keypair_of(matches, "nonce_account_keypair").unwrap(); let nonce_account = keypair_of(matches, "nonce_account_keypair").unwrap();
let lamports = required_lamports_from(matches, "amount", "unit")?; let lamports = required_lamports_from(matches, "amount", "unit")?;
let nonce_authority = let nonce_authority = pubkey_of(matches, "nonce_authority");
pubkey_of(matches, "nonce_authority").unwrap_or_else(|| nonce_account.pubkey());
Ok(CliCommandInfo { Ok(CliCommandInfo {
command: CliCommand::CreateNonceAccount { command: CliCommand::CreateNonceAccount {
@ -255,12 +249,12 @@ pub fn parse_get_nonce(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliEr
pub fn parse_new_nonce(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliError> { pub fn parse_new_nonce(matches: &ArgMatches<'_>) -> Result<CliCommandInfo, CliError> {
let nonce_account = pubkey_of(matches, "nonce_account_keypair").unwrap(); let nonce_account = pubkey_of(matches, "nonce_account_keypair").unwrap();
let nonce_authority = resolve_nonce_authority(matches); let nonce_authority = keypair_of(matches, "nonce_authority").map(|kp| kp.into());
Ok(CliCommandInfo { Ok(CliCommandInfo {
command: CliCommand::NewNonce { command: CliCommand::NewNonce {
nonce_account, nonce_account,
nonce_authority: nonce_authority.into(), nonce_authority,
}, },
require_keypair: true, require_keypair: true,
}) })
@ -285,12 +279,12 @@ pub fn parse_withdraw_from_nonce_account(
let nonce_account = pubkey_of(matches, "nonce_account_keypair").unwrap(); let nonce_account = pubkey_of(matches, "nonce_account_keypair").unwrap();
let destination_account_pubkey = pubkey_of(matches, "destination_account_pubkey").unwrap(); let destination_account_pubkey = pubkey_of(matches, "destination_account_pubkey").unwrap();
let lamports = required_lamports_from(matches, "amount", "unit")?; let lamports = required_lamports_from(matches, "amount", "unit")?;
let nonce_authority = resolve_nonce_authority(matches); let nonce_authority = keypair_of(matches, "nonce_authority").map(|kp| kp.into());
Ok(CliCommandInfo { Ok(CliCommandInfo {
command: CliCommand::WithdrawFromNonceAccount { command: CliCommand::WithdrawFromNonceAccount {
nonce_account, nonce_account,
nonce_authority: nonce_authority.into(), nonce_authority,
destination_account_pubkey, destination_account_pubkey,
lamports, lamports,
}, },
@ -330,11 +324,12 @@ pub fn process_authorize_nonce_account(
rpc_client: &RpcClient, rpc_client: &RpcClient,
config: &CliConfig, config: &CliConfig,
nonce_account: &Pubkey, nonce_account: &Pubkey,
nonce_authority: &Keypair, nonce_authority: Option<&Keypair>,
new_authority: &Pubkey, new_authority: &Pubkey,
) -> ProcessResult { ) -> ProcessResult {
let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?; let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?;
let nonce_authority = nonce_authority.unwrap_or(&config.keypair);
let ix = authorize(nonce_account, &nonce_authority.pubkey(), new_authority); let ix = authorize(nonce_account, &nonce_authority.pubkey(), new_authority);
let mut tx = Transaction::new_signed_with_payer( let mut tx = Transaction::new_signed_with_payer(
vec![ix], vec![ix],
@ -357,7 +352,7 @@ pub fn process_create_nonce_account(
rpc_client: &RpcClient, rpc_client: &RpcClient,
config: &CliConfig, config: &CliConfig,
nonce_account: &Keypair, nonce_account: &Keypair,
nonce_authority: &Pubkey, nonce_authority: Option<Pubkey>,
lamports: u64, lamports: u64,
) -> ProcessResult { ) -> ProcessResult {
let nonce_account_pubkey = nonce_account.pubkey(); let nonce_account_pubkey = nonce_account.pubkey();
@ -383,10 +378,11 @@ pub fn process_create_nonce_account(
.into()); .into());
} }
let nonce_authority = nonce_authority.unwrap_or_else(|| config.keypair.pubkey());
let ixs = create_nonce_account( let ixs = create_nonce_account(
&config.keypair.pubkey(), &config.keypair.pubkey(),
&nonce_account_pubkey, &nonce_account_pubkey,
nonce_authority, &nonce_authority,
lamports, lamports,
); );
let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?; let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?;
@ -431,7 +427,7 @@ pub fn process_new_nonce(
rpc_client: &RpcClient, rpc_client: &RpcClient,
config: &CliConfig, config: &CliConfig,
nonce_account: &Pubkey, nonce_account: &Pubkey,
nonce_authority: &Keypair, nonce_authority: Option<&Keypair>,
) -> ProcessResult { ) -> ProcessResult {
check_unique_pubkeys( check_unique_pubkeys(
(&config.keypair.pubkey(), "cli keypair".to_string()), (&config.keypair.pubkey(), "cli keypair".to_string()),
@ -445,6 +441,7 @@ pub fn process_new_nonce(
.into()); .into());
} }
let nonce_authority = nonce_authority.unwrap_or(&config.keypair);
let ix = nonce(&nonce_account, &nonce_authority.pubkey()); let ix = nonce(&nonce_account, &nonce_authority.pubkey());
let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?; let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?;
let mut tx = Transaction::new_signed_with_payer( let mut tx = Transaction::new_signed_with_payer(
@ -511,12 +508,13 @@ pub fn process_withdraw_from_nonce_account(
rpc_client: &RpcClient, rpc_client: &RpcClient,
config: &CliConfig, config: &CliConfig,
nonce_account: &Pubkey, nonce_account: &Pubkey,
nonce_authority: &Keypair, nonce_authority: Option<&Keypair>,
destination_account_pubkey: &Pubkey, destination_account_pubkey: &Pubkey,
lamports: u64, lamports: u64,
) -> ProcessResult { ) -> ProcessResult {
let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?; let (recent_blockhash, fee_calculator) = rpc_client.get_recent_blockhash()?;
let nonce_authority = nonce_authority.unwrap_or(&config.keypair);
let ix = withdraw( let ix = withdraw(
nonce_account, nonce_account,
&nonce_authority.pubkey(), &nonce_authority.pubkey(),
@ -583,7 +581,7 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::AuthorizeNonceAccount { command: CliCommand::AuthorizeNonceAccount {
nonce_account: nonce_account_pubkey, nonce_account: nonce_account_pubkey,
nonce_authority: read_keypair_file(&keypair_file).unwrap().into(), nonce_authority: None,
new_authority: Pubkey::default(), new_authority: Pubkey::default(),
}, },
require_keypair: true, require_keypair: true,
@ -604,7 +602,9 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::AuthorizeNonceAccount { command: CliCommand::AuthorizeNonceAccount {
nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: Some(
read_keypair_file(&authority_keypair_file).unwrap().into()
),
new_authority: Pubkey::default(), new_authority: Pubkey::default(),
}, },
require_keypair: true, require_keypair: true,
@ -624,7 +624,7 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::CreateNonceAccount { command: CliCommand::CreateNonceAccount {
nonce_account: read_keypair_file(&keypair_file).unwrap().into(), nonce_account: read_keypair_file(&keypair_file).unwrap().into(),
nonce_authority: nonce_account_pubkey, nonce_authority: None,
lamports: 50, lamports: 50,
}, },
require_keypair: true require_keypair: true
@ -646,7 +646,9 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::CreateNonceAccount { command: CliCommand::CreateNonceAccount {
nonce_account: read_keypair_file(&keypair_file).unwrap().into(), nonce_account: read_keypair_file(&keypair_file).unwrap().into(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().pubkey(), nonce_authority: Some(
read_keypair_file(&authority_keypair_file).unwrap().pubkey()
),
lamports: 50, lamports: 50,
}, },
require_keypair: true require_keypair: true
@ -678,7 +680,7 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::NewNonce { command: CliCommand::NewNonce {
nonce_account: nonce_account.pubkey(), nonce_account: nonce_account.pubkey(),
nonce_authority: nonce_account.into(), nonce_authority: None,
}, },
require_keypair: true require_keypair: true
} }
@ -698,7 +700,9 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::NewNonce { command: CliCommand::NewNonce {
nonce_account: nonce_account.pubkey(), nonce_account: nonce_account.pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: Some(
read_keypair_file(&authority_keypair_file).unwrap().into()
),
}, },
require_keypair: true require_keypair: true
} }
@ -735,7 +739,7 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::WithdrawFromNonceAccount { command: CliCommand::WithdrawFromNonceAccount {
nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&keypair_file).unwrap().into(), nonce_authority: None,
destination_account_pubkey: nonce_account_pubkey, destination_account_pubkey: nonce_account_pubkey,
lamports: 42 lamports: 42
}, },
@ -756,7 +760,7 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::WithdrawFromNonceAccount { command: CliCommand::WithdrawFromNonceAccount {
nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&keypair_file).unwrap().into(), nonce_authority: None,
destination_account_pubkey: nonce_account_pubkey, destination_account_pubkey: nonce_account_pubkey,
lamports: 42000000000 lamports: 42000000000
}, },
@ -780,7 +784,9 @@ mod tests {
CliCommandInfo { CliCommandInfo {
command: CliCommand::WithdrawFromNonceAccount { command: CliCommand::WithdrawFromNonceAccount {
nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: Some(
read_keypair_file(&authority_keypair_file).unwrap().into()
),
destination_account_pubkey: nonce_account_pubkey, destination_account_pubkey: nonce_account_pubkey,
lamports: 42 lamports: 42
}, },

View File

@ -1,4 +1,6 @@
use solana_cli::cli::{process_command, request_and_confirm_airdrop, CliCommand, CliConfig}; use solana_cli::cli::{
process_command, request_and_confirm_airdrop, CliCommand, CliConfig, KeypairEq,
};
use solana_client::rpc_client::RpcClient; use solana_client::rpc_client::RpcClient;
use solana_faucet::faucet::run_local_faucet; use solana_faucet::faucet::run_local_faucet;
use solana_sdk::{ use solana_sdk::{
@ -59,7 +61,7 @@ fn test_nonce() {
&mut config_payer, &mut config_payer,
&mut config_nonce, &mut config_nonce,
&keypair_file, &keypair_file,
&keypair_file, None,
); );
server.close().unwrap(); server.close().unwrap();
@ -95,20 +97,24 @@ fn test_nonce_with_authority() {
&mut config_payer, &mut config_payer,
&mut config_nonce, &mut config_nonce,
&nonce_keypair_file, &nonce_keypair_file,
&authority_keypair_file, Some(&authority_keypair_file),
); );
server.close().unwrap(); server.close().unwrap();
remove_dir_all(ledger_path).unwrap(); remove_dir_all(ledger_path).unwrap();
} }
fn read_keypair_from_option(keypair_file: &Option<&str>) -> Option<KeypairEq> {
keypair_file.map(|akf| read_keypair_file(&akf).unwrap().into())
}
fn full_battery_tests( fn full_battery_tests(
rpc_client: &RpcClient, rpc_client: &RpcClient,
faucet_addr: &std::net::SocketAddr, faucet_addr: &std::net::SocketAddr,
config_payer: &mut CliConfig, config_payer: &mut CliConfig,
config_nonce: &mut CliConfig, config_nonce: &mut CliConfig,
nonce_keypair_file: &str, nonce_keypair_file: &str,
authority_keypair_file: &str, authority_keypair_file: Option<&str>,
) { ) {
request_and_confirm_airdrop( request_and_confirm_airdrop(
&rpc_client, &rpc_client,
@ -122,7 +128,8 @@ fn full_battery_tests(
// Create nonce account // Create nonce account
config_payer.command = CliCommand::CreateNonceAccount { config_payer.command = CliCommand::CreateNonceAccount {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().into(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().into(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().pubkey(), nonce_authority: read_keypair_from_option(&authority_keypair_file)
.map(|na: KeypairEq| na.pubkey()),
lamports: 1000, lamports: 1000,
}; };
process_command(&config_payer).unwrap(); process_command(&config_payer).unwrap();
@ -144,7 +151,7 @@ fn full_battery_tests(
// New nonce // New nonce
config_payer.command = CliCommand::NewNonce { config_payer.command = CliCommand::NewNonce {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: read_keypair_from_option(&authority_keypair_file),
}; };
process_command(&config_payer).unwrap(); process_command(&config_payer).unwrap();
@ -159,7 +166,7 @@ fn full_battery_tests(
let payee_pubkey = Pubkey::new_rand(); let payee_pubkey = Pubkey::new_rand();
config_payer.command = CliCommand::WithdrawFromNonceAccount { config_payer.command = CliCommand::WithdrawFromNonceAccount {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: read_keypair_from_option(&authority_keypair_file),
destination_account_pubkey: payee_pubkey, destination_account_pubkey: payee_pubkey,
lamports: 100, lamports: 100,
}; };
@ -181,7 +188,7 @@ fn full_battery_tests(
write_keypair(&new_authority, tmp_file.as_file_mut()).unwrap(); write_keypair(&new_authority, tmp_file.as_file_mut()).unwrap();
config_payer.command = CliCommand::AuthorizeNonceAccount { config_payer.command = CliCommand::AuthorizeNonceAccount {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: read_keypair_from_option(&authority_keypair_file),
new_authority: read_keypair_file(&new_authority_keypair_file) new_authority: read_keypair_file(&new_authority_keypair_file)
.unwrap() .unwrap()
.pubkey(), .pubkey(),
@ -191,25 +198,29 @@ fn full_battery_tests(
// Old authority fails now // Old authority fails now
config_payer.command = CliCommand::NewNonce { config_payer.command = CliCommand::NewNonce {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&authority_keypair_file).unwrap().into(), nonce_authority: read_keypair_from_option(&authority_keypair_file),
}; };
process_command(&config_payer).unwrap_err(); process_command(&config_payer).unwrap_err();
// New authority can advance nonce // New authority can advance nonce
config_payer.command = CliCommand::NewNonce { config_payer.command = CliCommand::NewNonce {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&new_authority_keypair_file) nonce_authority: Some(
.unwrap() read_keypair_file(&new_authority_keypair_file)
.into(), .unwrap()
.into(),
),
}; };
process_command(&config_payer).unwrap(); process_command(&config_payer).unwrap();
// New authority can withdraw from nonce account // New authority can withdraw from nonce account
config_payer.command = CliCommand::WithdrawFromNonceAccount { config_payer.command = CliCommand::WithdrawFromNonceAccount {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().pubkey(),
nonce_authority: read_keypair_file(&new_authority_keypair_file) nonce_authority: Some(
.unwrap() read_keypair_file(&new_authority_keypair_file)
.into(), .unwrap()
.into(),
),
destination_account_pubkey: payee_pubkey, destination_account_pubkey: payee_pubkey,
lamports: 100, lamports: 100,
}; };

View File

@ -368,7 +368,7 @@ fn test_nonced_pay_tx() {
write_keypair(&nonce_account, tmp_file.as_file_mut()).unwrap(); write_keypair(&nonce_account, tmp_file.as_file_mut()).unwrap();
config.command = CliCommand::CreateNonceAccount { config.command = CliCommand::CreateNonceAccount {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().into(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().into(),
nonce_authority: config.keypair.pubkey(), nonce_authority: Some(config.keypair.pubkey()),
lamports: minimum_nonce_balance, lamports: minimum_nonce_balance,
}; };
process_command(&config).unwrap(); process_command(&config).unwrap();

View File

@ -312,7 +312,7 @@ fn test_nonced_stake_delegation_and_deactivation() {
write_keypair(&nonce_account, tmp_file.as_file_mut()).unwrap(); write_keypair(&nonce_account, tmp_file.as_file_mut()).unwrap();
config.command = CliCommand::CreateNonceAccount { config.command = CliCommand::CreateNonceAccount {
nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().into(), nonce_account: read_keypair_file(&nonce_keypair_file).unwrap().into(),
nonce_authority: config.keypair.pubkey(), nonce_authority: Some(config.keypair.pubkey()),
lamports: minimum_nonce_balance, lamports: minimum_nonce_balance,
}; };
process_command(&config).unwrap(); process_command(&config).unwrap();