Remove hard coded sync progress value

This commit is contained in:
Steve Myers 2022-03-02 14:06:40 -08:00
parent d17ea4b90c
commit cda682b634
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051

View File

@ -259,7 +259,6 @@ impl Wallet {
progress_update: Box<dyn BdkProgress>,
max_address_param: Option<u32>,
) -> Result<(), BdkError> {
progress_update.update(21.0, Some("message".to_string()));
self.get_wallet()
.sync(BdkProgressHolder { progress_update }, max_address_param)
}