Skip to content

Commit

Permalink
test: fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
snobbee committed Nov 25, 2023
1 parent 4e6cbf1 commit 3430791
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tools/sifgen/common/types/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,18 @@ type Transfer struct {
Params TransferParams `json:"params"`
}

type EpochInfos []struct {
Identifier string `json:"identifier"`
StartTime string `json:"start_time"`
Duration string `json:"duration"`
CurrentEpoch int64 `json:"current_epoch"`
CurrentEpochStartTime string `json:"current_epoch_start_time"`
EpochCountingStarted bool `json:"epoch_counting_started"`
CurrentEpochStartHeight int64 `json:"current_epoch_start_height"`
}

type Epochs struct {
Epochs []interface{} `json:"epochs"`
Epochs EpochInfos `json:"epochs"`
}

type AppState struct {
Expand Down

0 comments on commit 3430791

Please sign in to comment.