mobile: remove unnecessary json tags

This commit is contained in:
Luke Plaster
2019-10-17 17:58:38 +08:00
committed by Luke Plaster
parent b3015bdbbe
commit d608811fe7
2 changed files with 4 additions and 4 deletions

View File

@@ -22,9 +22,9 @@ type (
ReSharingParameters struct {
*Parameters
newParties *PeerContext `json:"new_ps"`
newPartyCount int `json:"new_n"`
newThreshold int `json:"new_t"`
newParties *PeerContext
newPartyCount int
newThreshold int
}
)

View File

@@ -8,7 +8,7 @@ package tss
type (
PeerContext struct {
partyIDs SortedPartyIDs `json:"ids"`
partyIDs SortedPartyIDs
}
)