refactor: add missing json tag

This commit is contained in:
hattizai 2024-05-31 15:45:28 +08:00
parent bdc62f9beb
commit da89c36b42
2 changed files with 6 additions and 6 deletions

View file

@ -201,7 +201,7 @@ func (api *BeaconLightApi) GetOptimisticUpdate() (types.OptimisticUpdate, error)
func decodeOptimisticUpdate(enc []byte) (types.OptimisticUpdate, error) { func decodeOptimisticUpdate(enc []byte) (types.OptimisticUpdate, error) {
var data struct { var data struct {
Version string Version string `json:"Version"`
Data struct { Data struct {
Attested jsonHeaderWithExecProof `json:"attested_header"` Attested jsonHeaderWithExecProof `json:"attested_header"`
Aggregate types.SyncAggregate `json:"sync_aggregate"` Aggregate types.SyncAggregate `json:"sync_aggregate"`
@ -254,7 +254,7 @@ func (api *BeaconLightApi) GetFinalityUpdate() (types.FinalityUpdate, error) {
func decodeFinalityUpdate(enc []byte) (types.FinalityUpdate, error) { func decodeFinalityUpdate(enc []byte) (types.FinalityUpdate, error) {
var data struct { var data struct {
Version string Version string `json:"Version"`
Data struct { Data struct {
Attested jsonHeaderWithExecProof `json:"attested_header"` Attested jsonHeaderWithExecProof `json:"attested_header"`
Finalized jsonHeaderWithExecProof `json:"finalized_header"` Finalized jsonHeaderWithExecProof `json:"finalized_header"`
@ -390,7 +390,7 @@ func (api *BeaconLightApi) GetBeaconBlock(blockRoot common.Hash) (*types.BeaconB
} }
var beaconBlockMessage struct { var beaconBlockMessage struct {
Version string Version string `json:"Version"`
Data struct { Data struct {
Message json.RawMessage `json:"message"` Message json.RawMessage `json:"message"`
} }

View file

@ -193,9 +193,9 @@ func (t *TestCommitteeChain) NextSyncPeriod() (uint64, bool) {
return t.nsp, t.init return t.nsp, t.init
} }
func (tc *TestCommitteeChain) ExpInit(t *testing.T, ExpInit bool) { func (tc *TestCommitteeChain) ExpInit(t *testing.T, expInit bool) {
if tc.init != ExpInit { if tc.init != expInit {
t.Errorf("Incorrect init flag (expected %v, got %v)", ExpInit, tc.init) t.Errorf("Incorrect init flag (expected %v, got %v)", expInit, tc.init)
} }
} }