doc: commission is now a u8 (#390)

This commit is contained in:
Michael Vines 2019-07-03 12:15:35 -07:00
parent d5d64c337b
commit 118a5f0ece
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ type ContactInfo = {
* @property {string} votePubkey Public key of the vote account
* @property {string} nodePubkey Identity public key of the node voting with this account
* @property {string} stake The stake, in lamports, delegated to this vote account
* @property {string} commission A 32-bit integer used as a fraction (commission/0xFFFFFFFF) for rewards payout
* @property {string} commission A 8-bit unsigned integer used as a fraction (commission/0xFF) for rewards payout
*/
type VoteAccountInfo = {
votePubkey: string,