Return the bit-array of votes including the fraction of power that has voted like: "BA{29:xx__x__x_x___x__x_______xxx__} 856/1304 = 0.66"
()
| 532 | // the fraction of power that has voted like: |
| 533 | // "BA{29:xx__x__x_x___x__x_______xxx__} 856/1304 = 0.66" |
| 534 | func (voteSet *VoteSet) BitArrayString() string { |
| 535 | voteSet.mtx.Lock() |
| 536 | defer voteSet.mtx.Unlock() |
| 537 | return voteSet.bitArrayString() |
| 538 | } |
| 539 | |
| 540 | func (voteSet *VoteSet) bitArrayString() string { |
| 541 | bAString := voteSet.votesBitArray.String() |
no test coverage detected