Skip to content

Commit 632663c

Browse files
authored
Update README.md
1 parent 9fdd997 commit 632663c

File tree

1 file changed

+2
-2
lines changed
  • not-so-smart-contracts/solana/signer_check

1 file changed

+2
-2
lines changed

not-so-smart-contracts/solana/signer_check/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ fn complete_escrow(_program_id: &Pubkey, accounts: &[AccountInfo], _instruction_
1919
if &state.authority == authority.key {
2020
state.escrow_state = EscrowState::Complete;
2121
state.serialize(&mut &mut **state_info.data.borrow_mut())?;
22-
return Ok(())
22+
return Ok(());
2323
}
24-
Err(ProgramError::IncorrectAuthority);
24+
Err(ProgramError::IncorrectAuthority)
2525

2626
}
2727
```

0 commit comments

Comments
 (0)