We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce29887 commit 1a63c2cCopy full SHA for 1a63c2c
not-so-smart-contracts/solana/ownership_check/README.md
@@ -17,7 +17,7 @@ fn set_owner(program_id: &Pubkey, new_owner: Pubkey, accounts: &[AccountInfo]) -
17
let mut market = Market::unpack(&market_info.data.borrow())?;
18
19
if &market.owner != current_owner.pubkey {
20
- return Err(InvalidMarketOwner.into());
+ return Err(InvalidMarketOwner.into());
21
}
22
market.owner = new_owner;
23
0 commit comments