-
Notifications
You must be signed in to change notification settings - Fork 137
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
Bubble init_send_tx
error instead of unwrapping
#600
Conversation
Oof, that's a weird one. Maybe triggered because something exited with an error where it used to panic. Will look into it.
grin-wallet/controller/tests/common/mod.rs Lines 77 to 82 in f7c65c7
|
Ok, it looks like that Windows CI failure was spurious — there's a widely-used crate called // On Windows it is not enough to just recursively remove the contents of a
// directory and then the directory itself. Deleting does not happen
// instantaneously, but is delayed by IO being completed in the fs stack.
//
// Further, typical Windows machines can handle many more concurrent IOs
// than a single threaded application is capable of submitting: the
// overlapped (async) calls available do not cover the operations needed to
// perform directory removal.
|
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.
Looking good 👍 For the Windows CI we have indeed issues since a while. We can open an issue and track it.
Should we go ahead and merge this @trevyn ? |
@quentinlesceller Yep! |
Fixes #582 "grin-wallet crashes when attempting to send amount larger than balance":
cargo test --all
passes locally.