mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-05-20 16:09:25 +00:00
6 lines
195 B
Rust
6 lines
195 B
Rust
|
|
use nssa_core::{account::AccountWithMetadata, program::AccountPostState};
|
||
|
|
|
||
|
|
pub fn noop(account: AccountWithMetadata) -> Vec<AccountPostState> {
|
||
|
|
vec![AccountPostState::new(account.account)]
|
||
|
|
}
|