Add buffer authority to upgradeable loader (#14482) (#14485)

(cherry picked from commit 58487c6360)

Co-authored-by: Jack May <jack@solana.com>
This commit is contained in:
mergify[bot]
2021-01-08 18:54:11 +00:00
committed by GitHub
parent d5ff64b0d7
commit e5175c843d
9 changed files with 2166 additions and 588 deletions

View File

@@ -180,6 +180,12 @@ pub enum InstructionError {
#[error("Program failed to compile")]
ProgramFailedToCompile,
#[error("Account is immutable")]
Immutable,
#[error("Incorrect authority provided")]
IncorrectAuthority,
}
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]