fix: remove unneeded backwards compatible epoch-credits value
This commit is contained in:
parent
b804455837
commit
4428b1bf3d
|
@ -399,9 +399,9 @@ const GetVoteAccounts = jsonRpcResult(
|
|||
nodePubkey: 'string',
|
||||
activatedStake: 'number',
|
||||
epochVoteAccount: 'boolean',
|
||||
epochCredits: struct.union(['null', struct.list([
|
||||
epochCredits: struct.list([
|
||||
struct.tuple(['number', 'number', 'number']),
|
||||
])]),
|
||||
]),
|
||||
commission: 'number',
|
||||
lastVote: 'number',
|
||||
rootSlot: 'number?',
|
||||
|
@ -413,9 +413,9 @@ const GetVoteAccounts = jsonRpcResult(
|
|||
nodePubkey: 'string',
|
||||
activatedStake: 'number',
|
||||
epochVoteAccount: 'boolean',
|
||||
epochCredits: struct.union(['null', struct.list([
|
||||
epochCredits: struct.list([
|
||||
struct.tuple(['number', 'number', 'number']),
|
||||
])]),
|
||||
]),
|
||||
commission: 'number',
|
||||
lastVote: 'number',
|
||||
rootSlot: 'number?',
|
||||
|
|
Loading…
Reference in New Issue