Skip to content

Commit f01c709

Browse files
Small fixes
Co-authored-by: Samuel Moelius <[email protected]>
1 parent 1af964a commit f01c709

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fn set_owner(program_id: &Pubkey, new_owner: Pubkey, accounts: &[AccountInfo]) -
1818
let mut market = Market::unpack(&market_info.data.borrow())?;
1919

2020
if &market.owner != current_owner.pubkey {
21-
return Err(InvalidMarketOwner.into());
21+
return Err(InvalidMarketOwner.into());
2222
}
2323
market.owner = new_owner;
2424

0 commit comments

Comments
 (0)