-
Notifications
You must be signed in to change notification settings - Fork 407
changed keysinterface.rs to signer.rs #2159
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
changed keysinterface.rs to signer.rs #2159
Conversation
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.
Dunno if signer
is right given it also includes EntropySource
, but I think its better than keysinterface
. Maybe let's do something like "crypto"? Dunno if that's too generic.
While you're at it can you move it out of the chain
module and into the top-level lightning
crate/lib?
../../lightning/src/util/time.rs |
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 like you made this no longer a symlink, which broke build?
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.
ill check again, but running it on main branch unchanged produced the same error.
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.
I think your git/OS/filesystem bungled the symlink and somehow replaced it with a file, which is why it failed locally and failed once checked in.
How about a |
@@ -411,7 +411,8 @@ enum OnchainEvent { | |||
/// If the funding spend transaction was a known remote commitment transaction, we track | |||
/// the output index and amount of the counterparty's `to_self` output here. | |||
/// | |||
/// This allows us to generate a [`Balance::CounterpartyRevokedOutputClaimable`] for the | |||
/// This allows us to generate a [`Balance::CounterpartyRevokedOutputClaimable`] for | |||
/// thechaannmo |
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.
typo: /// thechaannmo
, also should use spaces not tabs (though the full line will be deleted so it doesn't matter much here).
Ugh, we have separate parallel threads: #2157 (comment) |
Seems like progress has stall here and you may do this as part of some other work @arik-so? |
@TomNag-CS50 any interest in redoing this with the suggestions in the thread at #2157? |
Superseded by #2246. More splitting of the sign module would be welcome in a followup PR, if you find the time, @TomNag-CS50. |
changed keysinterface.rs to to signer.rs