feat(router): add kv implementation for update address in update payments flow (#2542)

This commit is contained in:
Sai Harsha Vardhan
2023-10-12 12:12:51 +05:30
committed by GitHub
parent 81cb8da4d4
commit 9f446bc174
8 changed files with 203 additions and 8 deletions

View File

@ -271,6 +271,11 @@ async fn drainer(
update_op,
connector_response
),
kv::Updateable::AddressUpdate(a) => macro_util::handle_resp!(
a.orig.update(&conn, a.update_data).await,
update_op,
address
),
}
})
.await;