-
Notifications
You must be signed in to change notification settings - Fork 386
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
Port tweakfedpegscript from liquid-deamon #374
Port tweakfedpegscript from liquid-deamon #374
Conversation
qa/rpc-tests/pegging.py
Outdated
@@ -168,6 +168,7 @@ def test_pegout(parent_chain_addr, sidechain): | |||
bitcoindstart = bitcoin_bin_path+"/bitcoind -datadir="+bitcoin_datadir | |||
subprocess.Popen(bitcoindstart.split(), stdout=subprocess.PIPE) | |||
|
|||
|
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.
unrelated line
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.
Cleaned this up
/* Not shown in help */ | ||
{ "hidden", "setmocktime", &setmocktime, true, {"timestamp"}}, | ||
{ "hidden", "echo", &echo, true, {"arg0","arg1","arg2","arg3","arg4","arg5","arg6","arg7","arg8","arg9"}}, | ||
{ "hidden", "echojson", &echo, true, {"arg0","arg1","arg2","arg3","arg4","arg5","arg6","arg7","arg8","arg9"}}, | ||
{ "hidden", "echojson", &echo, true, {"arg0","arg1","arg2","arg3","arg4","arg5","arg6","arg7","arg8","arg9"}}, |
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.
unrelated space
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.
Re-added the line that was removed: The space change was just to fix the column alignment in this line.
ACK otherwise |
Perhaps it would be nice to wait for #362 ? |
If I had to guess I'd say it would be simpler to merge this first and rebase the other PR, since it's still dependent on yet another PR. |
Needs squash |
Port tweakfedpegscript from liquid
@instagibbs Squashed (I hope) |
ACK |
9bcfdd8 Port tweakfedpegscript from liquid (Mike)
…-sort Peers table 986bf78 qt: Emit dataChanged signal to dynamically re-sort Peers table (Hennadii Stepanov) Pull request description: [By default](https://doc.qt.io/qt-5/qsortfilterproxymodel.html#details), the `PeerTableSortProxy` > dynamically re-sorts ... data whenever the original model changes. That is not the case on master (8cdf917) as in ecbd911 (#164) no signals are emitted to notify about model changes. This PR uses a dedicated [`dataChanged`](https://doc.qt.io/qt-5/qabstractitemmodel.html#dataChanged) signal. Fixes #367. An alternative to #374. ACKs for top commit: jarolrod: ACK 986bf78 Tree-SHA512: dcb92c2f9a2c632880429e9528007db426d2ad938c64dfa1f1538c03e4b62620df52ad7daf33b582976c67b472ff76bc0dae707049f4bbbd4941232cee9ce3d4
This is a port of the changes made in liquid-deamon to add tweakfedpegscript in rpc/misc.cpp.