-
Notifications
You must be signed in to change notification settings - Fork 127
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
MovePoolSv2
lib code out of main.rs
#1097
MovePoolSv2
lib code out of main.rs
#1097
Conversation
Bencher
Click to view all benchmark results
Bencher - Continuous Benchmarking View Public Perf Page Docs | Repo | Chat | Help |
Bencher
🚨 1 ALERT: Threshold Boundary Limit exceeded!
Click to view all benchmark results
Bencher - Continuous Benchmarking View Public Perf Page Docs | Repo | Chat | Help |
Bencher
Click to view all benchmark results
Bencher - Continuous Benchmarking View Public Perf Page Docs | Repo | Chat | Help |
Bencher
🚨 1 ALERT: Threshold Boundary Limit exceeded!
Click to view all benchmark results
Bencher - Continuous Benchmarking View Public Perf Page Docs | Repo | Chat | Help |
|
@@ -66,6 +66,15 @@ pub struct CoinbaseOutput { | |||
output_script_value: String, | |||
} | |||
|
|||
impl CoinbaseOutput { |
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.
This struct appears all over. I'll create an issue from this comment to consolidate to a location in the code base that makes sense.
#1066 (comment)
#1066 (comment)
#1066 (comment)
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.
LGTM.
Seems naming of some variables drifts from conventions I've seen elsewhere but that's outside the scope of this PR.
impl PoolSv2 { | ||
pub async fn start(config: Configuration) { | ||
let (status_tx, status_rx) = unbounded(); | ||
let (s_new_t, r_new_t) = bounded(10); |
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.
nit: naming conventions for channels should be consistent with the rest of the code base.
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.
ACK. Same nits as @marathon-gary mentioned. I am still facing the shutdown signalling error mentioned here: #1095 (comment)
b5abc57
to
6a9218c
Compare
6a9218c
to
70d7cda
Compare
70d7cda
to
d4a4470
Compare
..This would allow us to use the crate in other enviornements.
d4a4470
to
8158398
Compare
part of #1093