| 415 | }; |
| 416 | |
| 417 | struct CompareValueOnly2 { |
| 418 | bool operator()(const pair<int64_t, int>& t1, |
| 419 | const pair<int64_t, int>& t2) const { |
| 420 | return t1.first < t2.first; |
| 421 | } |
| 422 | }; |
| 423 | |
| 424 | int CountMasternodesAboveProtocol(int protocolVersion) { |
| 425 | int i = 0; |
no outgoing calls
no test coverage detected