remove env variable for vendored autobahn binary
This commit is contained in:
parent
bfe2b76a27
commit
f5acba8db2
|
@ -522,7 +522,8 @@ async fn get_balance(
|
|||
spl_token::ID
|
||||
};
|
||||
|
||||
let ata_address = get_associated_token_address_with_program_id(&owner, &mint, &token_program_id);
|
||||
let ata_address =
|
||||
get_associated_token_address_with_program_id(&owner, &mint, &token_program_id);
|
||||
|
||||
let Some(ata) = ctx.get_account(&ata_address) else {
|
||||
return Ok(0);
|
||||
|
@ -634,10 +635,10 @@ fn setup_test_chain(clock: &Clock, dump: &ExecutionDump) -> anyhow::Result<LiteS
|
|||
program_test.set_sysvar(clock);
|
||||
|
||||
initialize_accounts(&mut program_test, dump)?;
|
||||
|
||||
let autobahn_path = option_env!("AUTOBAHN_EXECUTOR").map(|x| PathBuf::from(x)).unwrap_or(find_file(format!("autobahn_executor.so").as_str()).unwrap());
|
||||
log::info!("Adding program: {:?} at {autobahn_path:?}", autobahn_executor::ID);
|
||||
program_test.add_program_from_file(autobahn_executor::ID, autobahn_path)?;
|
||||
|
||||
let path = find_file(format!("autobahn_executor.so").as_str()).unwrap();
|
||||
log::debug!("Adding program: {:?} at {path:?}", autobahn_executor::ID);
|
||||
program_test.add_program_from_file(autobahn_executor::ID, path)?;
|
||||
|
||||
// TODO: make this dynamic based on routes
|
||||
let mut cb = solana_program_runtime::compute_budget::ComputeBudget::default();
|
||||
|
|
Loading…
Reference in New Issue