Add buffer authority to upgradeable loader (bp #14482) (#14503)

* Add buffer authority to upgradeable loader (#14482)

(cherry picked from commit 58487c6360)

* resolve conflicts

* nudge

Co-authored-by: Jack May <jack@solana.com>
This commit is contained in:
mergify[bot]
2021-01-09 05:13:55 +00:00
committed by GitHub
parent 35b42e1541
commit 4470afceaa
9 changed files with 2186 additions and 591 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)]