-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add has_compounding_withdrawal_credential helper Progress Tuesday night progress Thursday night progress Sunday afternoon progress Tuesday progress Monday night progress: tests are passing Progress from last week, mostly on state monday night progress: had to refactor a lot of tests to be blackbox tests tuesday progress wednesday progress thursday progress Friday progress Monday progress Fix up eip-7251 branch, fix issues, update to spec v1.5.0-alpha.0 More updates to spec 1.5.0-alpha.0, refactorings Prepping for spectests WIP: Electra beacon state HTR Progress on custom HTR for beaconStateElectra
- Loading branch information
1 parent
8d9024f
commit 2dc3c74
Showing
157 changed files
with
7,181 additions
and
488 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package cache | ||
|
||
import ( | ||
lru "github.com/hashicorp/golang-lru" | ||
"github.com/prysmaticlabs/prysm/v5/beacon-chain/state" | ||
) | ||
|
||
func BalanceCacheKey(st state.ReadOnlyBeaconState) (string, error) { | ||
return balanceCacheKey(st) | ||
} | ||
|
||
func MaxCheckpointStateSize() int { | ||
return maxCheckpointStateSize | ||
} | ||
|
||
func (c *CheckpointStateCache) Cache() *lru.Cache { | ||
return c.cache | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.