Improve test maintainability (#20318)

This commit is contained in:
Jack May
2021-09-29 13:13:10 -07:00
committed by GitHub
parent 58f8713292
commit 037c9f571e
17 changed files with 1144 additions and 1151 deletions

View File

@ -1,4 +1,4 @@
//! @brief Example Rust-based BPF program that issues a cross-program-invocation
pub mod instruction;
pub mod instructions;
pub mod processor;

View File

@ -2,7 +2,7 @@
#![cfg(feature = "program")]
use crate::instruction::*;
use crate::instructions::*;
use solana_program::{
account_info::AccountInfo,
bpf_loader, entrypoint,