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

@ -16,7 +16,6 @@ chrono = "0.4"
serde = "1.0.126"
serde_json = "1.0.64"
serde_yaml = "0.8.13"
solana-budget-program = { path = "../programs/budget", version = "=1.8.0" }
solana-clap-utils = { path = "../clap-utils", version = "=1.8.0" }
solana-cli-config = { path = "../cli-config", version = "=1.8.0" }
solana-exchange-program = { path = "../programs/exchange", version = "=1.8.0" }

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![]
};