solana/sdk/src/nonce_account.rs

60 lines
1.7 KiB
Rust
Raw Normal View History

use crate::{
2021-04-26 10:06:40 -07:00
account::{AccountSharedData, ReadableAccount},
2020-01-22 17:54:06 -08:00
account_utils::StateMut,
hash::Hash,
nonce::{state::Versions, State},
};
2020-10-28 22:01:07 -07:00
use std::cell::RefCell;
2021-03-09 13:06:07 -08:00
pub fn create_account(lamports: u64) -> RefCell<AccountSharedData> {
2020-10-28 22:01:07 -07:00
RefCell::new(
2021-03-09 13:06:07 -08:00
AccountSharedData::new_data_with_space(
2020-10-28 22:01:07 -07:00
lamports,
&Versions::new_current(State::Uninitialized),
State::size(),
&crate::system_program::id(),
)
.expect("nonce_account"),
)
}
2021-03-09 13:06:07 -08:00
pub fn verify_nonce_account(acc: &AccountSharedData, hash: &Hash) -> bool {
2021-04-26 10:06:40 -07:00
if acc.owner() != &crate::system_program::id() {
return false;
}
match StateMut::<Versions>::state(acc).map(|v| v.convert_to_current()) {
Ok(State::Initialized(ref data)) => *hash == data.blockhash,
_ => false,
}
}
pub fn lamports_per_signature_of(account: &AccountSharedData) -> Option<u64> {
let state = StateMut::<Versions>::state(account)
.ok()?
.convert_to_current();
match state {
State::Initialized(data) => Some(data.fee_calculator.lamports_per_signature),
_ => None,
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::pubkey::Pubkey;
#[test]
fn test_verify_bad_account_owner_fails() {
let program_id = Pubkey::new_unique();
assert_ne!(program_id, crate::system_program::id());
2021-03-09 13:06:07 -08:00
let account = AccountSharedData::new_data_with_space(
42,
&Versions::new_current(State::Uninitialized),
State::size(),
&program_id,
)
.expect("nonce_account");
assert!(!verify_nonce_account(&account, &Hash::default()));
}
}