-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Real-time Sync: Integrate changes on the SDK #578
Conversation
dbd3736
to
ca96325
Compare
4b52ac1
to
4f7a30b
Compare
ca96325
to
f024c00
Compare
b6f39e8
to
9051fb6
Compare
f024c00
to
741ec9a
Compare
acc6976
to
46d6f06
Compare
84c9604
to
42856fc
Compare
@@ -76,6 +80,7 @@ impl Config { | |||
network: LiquidNetwork::Testnet, | |||
payment_timeout_sec: 15, | |||
zero_conf_min_fee_rate_msat: DEFAULT_ZERO_CONF_MIN_FEE_RATE_TESTNET, | |||
sync_service_url: BREEZ_SYNC_SERVICE_URL.to_string(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the same service URL for mainnet/testnet, is this going to cause a conflict if using the same mnemonic for both? I imagine it will merge swap data from both together...
self.client.connect(self.remote_url.clone()).await?; | ||
|
||
self.check_remote_change()?; | ||
async fn run_event_loop(&self) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name is a bit misleading, maybe push_pull()
?
e9f9798
to
8714645
Compare
42856fc
to
3fe99dd
Compare
8714645
to
4e4b73f
Compare
3fe99dd
to
c6414d3
Compare
62efe77
to
f762613
Compare
83cfeb6
to
bcbc163
Compare
f762613
to
3150b68
Compare
71f5ef0
to
01e67ee
Compare
fix: add formatting command to build feat: add secondary trigger to sync deps: add tonic tls-webpki-roots feat: prevent double claiming on status stream handlers fix: add tx commit to chain swap update (#588) fix: ensure we pull records before prepare_send fix: fmt and tests
01e67ee
to
48a7cc9
Compare
Based on #555, #556, #568.
Closes #506.