This commit is contained in:
Aniket Prajapati 2023-01-08 22:25:05 +05:30
parent f8d879f8f3
commit 377c859c80
No known key found for this signature in database
GPG Key ID: D4346D8C9C5398F2
1 changed files with 1 additions and 3 deletions

View File

@ -144,8 +144,6 @@ impl BlockListener {
for sig in signatures {
if let Some(mut tx_status) = self.txs_sent.get_mut(&sig) {
info!("{comfirmation_status:?} {sig}");
*tx_status.value_mut() = Some(TransactionStatus {
slot,
confirmations: None, //TODO: talk about this
@ -157,7 +155,7 @@ impl BlockListener {
// subscribers
if let Some((sig, mut sink)) = self.signature_subscribers.remove(&sig) {
warn!("notification {}", sig);
info!("notification {}", sig);
// none if transaction succeeded
sink.send(&RpcResponse {
context: RpcResponseContext {