Commit 754640a778b2b2af2b0ce706dc7e324b4080d52f
1 parent
aa41a8c5
Exists in
master
and in
4 other branches
提交
Showing
1 changed file
with
5 additions
and
2 deletions
Show diff stats
src/HttpServer/jsonconf/jsonconf.go
| ... | ... | @@ -55,9 +55,12 @@ type SignRewardDetail struct { |
| 55 | 55 | Num int `json:"num"` |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | +type SignRewardR struct { | |
| 59 | + RewardR []SignRewardDetail | |
| 60 | +} | |
| 61 | + | |
| 58 | 62 | type SignReward struct { |
| 59 | - Reward1 []SignRewardDetail | |
| 60 | - Reward2 []SignRewardDetail | |
| 63 | + Reward1 []SignRewardR | |
| 61 | 64 | } |
| 62 | 65 | |
| 63 | 66 | type SignConfigDesc struct { | ... | ... |