-
Notifications
You must be signed in to change notification settings - Fork 41
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
Fix sample cli and bitcoin rpc provider #210
Conversation
8c1da20
to
952d18c
Compare
tACK 👍 Got an error with the
changing Can make a PR for that |
match self | ||
.client | ||
.lock() | ||
.unwrap() | ||
.unlock_unspent(outpoints) | ||
.map_err(rpc_err_to_manager_err)? | ||
{ | ||
true => Ok(()), | ||
false => Err(ManagerError::StorageError(format!("Failed to unlock utxos: {outpoints:?}"))) | ||
false => Err(ManagerError::StorageError(format!( | ||
"Failed to unlock utxos: {outpoints:?}" | ||
))), |
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.
Is this just a formatting change? Maybe this wasn't intentional.
On a similar note, I often get formatting conflicts when working on rust-dlc
since I use auto-formatting on save. Are we using rustfmt
or not?
952d18c
to
3b48432
Compare
Closes #209 |
No description provided.