Yuki Kishimoto on Nostr: What do you think of this solution? https://github.com/rust-nostr/nostr/pull/495 ...
What do you think of this solution?
https://github.com/rust-nostr/nostr/pull/495
```rust
let opts = NegentropyOptions::default(); // Add `.dry_run()` to only check local and remote events without get them
let output = client.reconcile(filter, opts).await?;
println!("Local: {}", output.local.len());
println!("Remote: {}", output.remote.len());
println!("Sent: {}", output.sent.len());
println!("Received: {}", output.received.len());
```
https://github.com/rust-nostr/nostr/pull/495
```rust
let opts = NegentropyOptions::default(); // Add `.dry_run()` to only check local and remote events without get them
let output = client.reconcile(filter, opts).await?;
println!("Local: {}", output.local.len());
println!("Remote: {}", output.remote.len());
println!("Sent: {}", output.sent.len());
println!("Received: {}", output.received.len());
```