Remove failure's use of GenericError (#8287)

automerge
This commit is contained in:
Jack May
2020-02-14 14:07:53 -08:00
committed by GitHub
parent 4593d333c7
commit 965361ff69
2 changed files with 2 additions and 2 deletions

View File

@@ -13,5 +13,5 @@ fn process_instruction(
_keyed_accounts: &[KeyedAccount],
_data: &[u8],
) -> Result<(), InstructionError> {
Err(InstructionError::GenericError)
Err(InstructionError::CustomError(0))
}