We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 897b0e3 commit 2aebbbfCopy full SHA for 2aebbbf
examples/soroban/simple_account/src/subcontract.rs
@@ -26,7 +26,7 @@ impl IsSimpleAccount for SimpleAccountManager {
26
fn init(&mut self, public_key: BytesN<32>) -> Result<(), Error> {
27
if self.owner.get().is_some() {
28
return Err(Error::OwnerAlreadySet);
29
- };
+ }
30
self.owner.set(&public_key);
31
Ok(())
32
}
0 commit comments