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