Commit 2e71a9a
committed
Merge dashpay#6886: fix: multiple help string for RPC result
9af4c55 fix: typos and capitalizations (Konstantin Akimov)
690ff3a fix: apply suggestions from code review (Konstantin Akimov)
6e89094 fix: multiple code-review comments (Konstantin Akimov)
661db51 fix: add missing RPC help result for quorum RPCs (Konstantin Akimov)
72284b5 fix: add missing RPC help result for RPC getrawtransactionmulti (Konstantin Akimov)
7d6b606 fix: add missing RPC help result for evo RPCs (Konstantin Akimov)
3b4095c fix: add proper RPC result for governance RPC (Konstantin Akimov)
b216d13 fix: set proper RPCResult for coinjoin RPC (Konstantin Akimov)
b174fe0 fix: add missing RPC help result for RPC mockscheduler (Konstantin Akimov)
cc1a8fd fix: add missing RPC help result for masternode RPCs (Konstantin Akimov)
Pull request description:
## Issue being fixed or feature implemented
For many dash specific RPC we use stub `RPCResults` instead real documentation for returned values.
It was possible because some important changes from backport bitcoin#20495 has been skipped.
## What was done?
Replaced all stub RPCResults{} in RPC code to real help, or map with ELISION inside.
For some RPC replaced ELISION to real description.
## How Has This Been Tested?
See PR dashpay#6887: done extra testing with backports bitcoin#20495, bitcoin#25161, bitcoin#25170, bitcoin#24408, bitcoin#25237 and fixed all failures in functional tests.
## Breaking Changes
N/A
## Checklist:
- [x] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have added or updated relevant unit/integration/functional/e2e tests
- [ ] I have made corresponding changes to the documentation
- [x] I have assigned this pull request to a milestone
ACKs for top commit:
UdjinM6:
utACK 9af4c55
kwvg:
utACK 9af4c55
Tree-SHA512: 7b8842255050a9154ea4e2d8e7245888dfe96543c856b0e299b95e861156a2fc22a20abb882153ede75f901cfe420df344bbfd1c82364a7b44eb357c38fab4bbFile tree
8 files changed
+275
-46
lines changed- src
- rpc
- wallet/rpc
8 files changed
+275
-46
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| |||
230 | 230 | | |
231 | 231 | | |
232 | 232 | | |
233 | | - | |
| 233 | + | |
234 | 234 | | |
235 | 235 | | |
236 | 236 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1404 | 1404 | | |
1405 | 1405 | | |
1406 | 1406 | | |
1407 | | - | |
| 1407 | + | |
| 1408 | + | |
| 1409 | + | |
| 1410 | + | |
| 1411 | + | |
| 1412 | + | |
| 1413 | + | |
| 1414 | + | |
| 1415 | + | |
| 1416 | + | |
1408 | 1417 | | |
1409 | 1418 | | |
1410 | 1419 | | |
| |||
1511 | 1520 | | |
1512 | 1521 | | |
1513 | 1522 | | |
| 1523 | + | |
1514 | 1524 | | |
1515 | 1525 | | |
1516 | 1526 | | |
| |||
1644 | 1654 | | |
1645 | 1655 | | |
1646 | 1656 | | |
1647 | | - | |
1648 | | - | |
| 1657 | + | |
| 1658 | + | |
| 1659 | + | |
| 1660 | + | |
| 1661 | + | |
| 1662 | + | |
| 1663 | + | |
| 1664 | + | |
| 1665 | + | |
| 1666 | + | |
| 1667 | + | |
| 1668 | + | |
| 1669 | + | |
| 1670 | + | |
| 1671 | + | |
| 1672 | + | |
| 1673 | + | |
| 1674 | + | |
| 1675 | + | |
| 1676 | + | |
| 1677 | + | |
| 1678 | + | |
| 1679 | + | |
| 1680 | + | |
| 1681 | + | |
| 1682 | + | |
| 1683 | + | |
| 1684 | + | |
| 1685 | + | |
| 1686 | + | |
| 1687 | + | |
| 1688 | + | |
| 1689 | + | |
| 1690 | + | |
1649 | 1691 | | |
1650 | 1692 | | |
1651 | 1693 | | |
| |||
1743 | 1785 | | |
1744 | 1786 | | |
1745 | 1787 | | |
1746 | | - | |
| 1788 | + | |
1747 | 1789 | | |
1748 | 1790 | | |
1749 | 1791 | | |
| |||
1833 | 1875 | | |
1834 | 1876 | | |
1835 | 1877 | | |
1836 | | - | |
| 1878 | + | |
1837 | 1879 | | |
1838 | 1880 | | |
1839 | 1881 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
47 | 60 | | |
48 | 61 | | |
49 | 62 | | |
| |||
71 | 84 | | |
72 | 85 | | |
73 | 86 | | |
74 | | - | |
| 87 | + | |
75 | 88 | | |
76 | 89 | | |
77 | 90 | | |
| |||
96 | 109 | | |
97 | 110 | | |
98 | 111 | | |
99 | | - | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
100 | 118 | | |
101 | 119 | | |
102 | 120 | | |
| |||
145 | 163 | | |
146 | 164 | | |
147 | 165 | | |
148 | | - | |
| 166 | + | |
149 | 167 | | |
150 | 168 | | |
151 | 169 | | |
| |||
254 | 272 | | |
255 | 273 | | |
256 | 274 | | |
257 | | - | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
258 | 285 | | |
259 | 286 | | |
260 | 287 | | |
| |||
303 | 330 | | |
304 | 331 | | |
305 | 332 | | |
306 | | - | |
| 333 | + | |
307 | 334 | | |
308 | 335 | | |
309 | 336 | | |
| |||
482 | 509 | | |
483 | 510 | | |
484 | 511 | | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
485 | 529 | | |
486 | 530 | | |
487 | 531 | | |
| |||
492 | 536 | | |
493 | 537 | | |
494 | 538 | | |
495 | | - | |
| 539 | + | |
496 | 540 | | |
497 | 541 | | |
498 | 542 | | |
| |||
545 | 589 | | |
546 | 590 | | |
547 | 591 | | |
548 | | - | |
| 592 | + | |
549 | 593 | | |
550 | 594 | | |
551 | 595 | | |
| |||
667 | 711 | | |
668 | 712 | | |
669 | 713 | | |
670 | | - | |
| 714 | + | |
| 715 | + | |
| 716 | + | |
| 717 | + | |
| 718 | + | |
| 719 | + | |
| 720 | + | |
| 721 | + | |
| 722 | + | |
| 723 | + | |
| 724 | + | |
| 725 | + | |
671 | 726 | | |
672 | 727 | | |
673 | 728 | | |
| |||
713 | 768 | | |
714 | 769 | | |
715 | 770 | | |
716 | | - | |
| 771 | + | |
| 772 | + | |
| 773 | + | |
| 774 | + | |
| 775 | + | |
| 776 | + | |
| 777 | + | |
| 778 | + | |
| 779 | + | |
717 | 780 | | |
718 | 781 | | |
719 | 782 | | |
| |||
809 | 872 | | |
810 | 873 | | |
811 | 874 | | |
812 | | - | |
| 875 | + | |
| 876 | + | |
| 877 | + | |
| 878 | + | |
| 879 | + | |
| 880 | + | |
813 | 881 | | |
814 | 882 | | |
815 | 883 | | |
| |||
875 | 943 | | |
876 | 944 | | |
877 | 945 | | |
878 | | - | |
| 946 | + | |
879 | 947 | | |
880 | 948 | | |
881 | 949 | | |
| |||
897 | 965 | | |
898 | 966 | | |
899 | 967 | | |
900 | | - | |
| 968 | + | |
901 | 969 | | |
902 | 970 | | |
903 | 971 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
53 | 55 | | |
54 | 56 | | |
55 | 57 | | |
| |||
85 | 87 | | |
86 | 88 | | |
87 | 89 | | |
88 | | - | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
89 | 112 | | |
90 | 113 | | |
91 | 114 | | |
| |||
157 | 180 | | |
158 | 181 | | |
159 | 182 | | |
160 | | - | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
161 | 190 | | |
162 | 191 | | |
163 | 192 | | |
| |||
232 | 261 | | |
233 | 262 | | |
234 | 263 | | |
235 | | - | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
236 | 270 | | |
237 | 271 | | |
238 | 272 | | |
| |||
454 | 488 | | |
455 | 489 | | |
456 | 490 | | |
457 | | - | |
| 491 | + | |
458 | 492 | | |
459 | 493 | | |
460 | 494 | | |
| |||
491 | 525 | | |
492 | 526 | | |
493 | 527 | | |
494 | | - | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
495 | 535 | | |
496 | 536 | | |
497 | 537 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
827 | 827 | | |
828 | 828 | | |
829 | 829 | | |
830 | | - | |
| 830 | + | |
831 | 831 | | |
832 | 832 | | |
833 | 833 | | |
| |||
0 commit comments