-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Use a two-element array instead of a vec for change addresses #1281
Conversation
0e72925
to
a9cd19b
Compare
Dust { | ||
output_value: Amount, | ||
dust_value: Amount, | ||
}, | ||
ValueOverflow, | ||
} | ||
|
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.
Maybe Target::Exact -> Target::TryExact ?
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.
Something to reflect that a non exact value can happen in some edge case like in this PR
@@ -19,7 +19,7 @@ jobs: | |||
docs: | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v3 | |||
- uses: actions/checkout@v2 |
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.
What's the reason for the downgrade?
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.
looks good to me. other than a couple questions
This also broke the fuzz target, so I integrated it with the rest of the workspace, so it should get checked for syntax errors on CI.