Skip to content

Commit 2aebbbf

Browse files
committed
clippy
1 parent 897b0e3 commit 2aebbbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/soroban/simple_account/src/subcontract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ impl IsSimpleAccount for SimpleAccountManager {
2626
fn init(&mut self, public_key: BytesN<32>) -> Result<(), Error> {
2727
if self.owner.get().is_some() {
2828
return Err(Error::OwnerAlreadySet);
29-
};
29+
}
3030
self.owner.set(&public_key);
3131
Ok(())
3232
}

0 commit comments

Comments
 (0)