virto-node
virto-node copied to clipboard
Review VoteWeight type
The initial idea of VoteWeight
being a u32
was to normalize votes in the u32
range, as we are currently just saturating_add
ing votes and blanaces are big numbers(u128
) I assume the voting system will easily break. We should either try to normalize votes in the u32
range if possible as initially planned or grow the type to a u128
to allow communities with all kinds of tokenomics to count votes properly.