remove env variable for vendored autobahn binary

This commit is contained in:
Maximilian Schneider 2024-11-06 19:50:31 +01:00
parent bfe2b76a27
commit f5acba8db2
1 changed files with 6 additions and 5 deletions

View File

@ -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();