Remove budget program (#17816)

This commit is contained in:
Tyera Eulberg
2021-06-07 19:20:17 -06:00
committed by GitHub
parent e76c275867
commit a66566e75b
14 changed files with 23 additions and 1402 deletions

View File

@@ -1,8 +1,6 @@
//! A command-line executable for generating the chain's genesis config.
#![allow(clippy::integer_arithmetic)]
#[macro_use]
extern crate solana_budget_program;
#[macro_use]
extern crate solana_exchange_program;
@@ -492,7 +490,7 @@ fn main() -> Result<(), Box<dyn error::Error>> {
);
let native_instruction_processors = if cluster_type == ClusterType::Development {
vec![solana_budget_program!(), solana_exchange_program!()]
vec![solana_exchange_program!()]
} else {
vec![]
};