Skip to content

Commit

Permalink
Merge pull request #60 from hoodrunio/scheduled
Browse files Browse the repository at this point in the history
Scheduled Update
  • Loading branch information
Errorist79 authored Dec 3, 2024
2 parents c9e7ead + 30d5060 commit 0580ff8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions babylon/btcstaking/v1/btcstaking.proto
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ message FinalityProvider {
uint32 slashed_btc_height = 7;
// jailed defines whether the finality provider is jailed
bool jailed = 8;
// highest_voted_height is the highest height for which the
// finality provider has voted
uint32 highest_voted_height = 9;
}

// FinalityProviderWithMeta wraps the FinalityProvider with metadata.
Expand All @@ -57,6 +60,9 @@ message FinalityProviderWithMeta {
uint32 slashed_btc_height = 5;
// jailed defines whether the finality provider is detected jailed
bool jailed = 6;
// highest_voted_height is the highest height for which the
// finality provider has voted
uint32 highest_voted_height = 7;
}

// BTCDelegation defines a BTC delegation
Expand Down
3 changes: 3 additions & 0 deletions babylon/btcstaking/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,7 @@ message FinalityProviderResponse {
uint64 height = 8;
// jailed defines whether the finality provider is jailed
bool jailed = 9;
// highest_voted_height is the highest height for which the
// finality provider has voted
uint32 highest_voted_height = 10;
}
3 changes: 3 additions & 0 deletions babylon/finality/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ message ActiveFinalityProvidersAtHeightResponse {
uint32 slashed_btc_height = 5;
// jailed defines whether the finality provider is detected jailed
bool jailed = 6;
// highest_voted_height is the highest height for which the
// finality provider has voted
uint32 highest_voted_height = 7;
}

// QueryActiveFinalityProvidersAtHeightResponse is the response type for the
Expand Down

0 comments on commit 0580ff8

Please sign in to comment.