-
Notifications
You must be signed in to change notification settings - Fork 912
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
Regtest feerate setting #4405
Regtest feerate setting #4405
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.
Just a typo :-)
ACK 54d2795
plugins/bcli.c
Outdated
@@ -994,6 +1015,10 @@ int main(int argc, char *argv[]) | |||
" closed more often due to fee fluctuations," | |||
" large values may result in large fees.", | |||
u32_option, &bitcoind->max_fee_multiplier), | |||
plugin_option("dev-no-fake-fees", | |||
"bool", | |||
"Supress fee faking for regtst", |
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.
"Supress fee faking for regtst", | |
"Supress fee faking for regtest", |
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.
There's also two pp in suppress :(
Saves a great deal of confusion for regtest users. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-Changed: JSON-RPC: If bitcoind won't give a fee estimate in regtest, use minimum.
We probably want to notify everyone immediately, rather than waiting for the first change. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
…hment. They need to specify fees to get a channel before this, but it's possible. The test revealed no surprises (other than the last change). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
54d2795
to
6ebbacf
Compare
Ack 6ebbacf Spelling only |
We have a dev knob to disable it for testing, but this is what everyone actually wants when using regtest, AFAICT.
During a recent demo I had one regtest peer send out an update_fee with a 0 rate. To my consternation, I have been unable to reproduce this. Is bitcoind giving wild fee estimates in some regtest setups?