Fix blind keyed_account indexing in BPF and Move loader (#6810)

This commit is contained in:
Jack May
2019-11-08 09:19:19 -08:00
committed by GitHub
parent 75fd13de5d
commit cd5ec8cd35
4 changed files with 263 additions and 108 deletions

View File

@ -73,6 +73,9 @@ pub enum InstructionError {
/// A non-system program changed the size of the account data
AccountDataSizeChanged,
/// the instruction expected an executable account
AccountNotExecutable,
/// CustomError allows on-chain programs to implement program-specific error types and see
/// them returned by the Solana runtime. A CustomError may be any type that is represented
/// as or serialized to a u32 integer.