mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
cceb8c2c3a
* Initial work on state shards * Fix compile errors * Intermediate * Implement dispatcher * Implemented sharded reader * No cache * Print comms * No prepopulation * Print dispatcher activity * Print more * Print errors * Fix dispatcher * Remove logging * Dispatcher to enforce initial barrier * Don't print that much * Turn off cache pre-seeting for state sharding * Artificial latency, fixed number of blocks to execute * Fix
10 lines
122 B
Go
10 lines
122 B
Go
package shards
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestShards(t *testing.T) {
|
|
NewShard(nil, 0, nil, nil, nil, nil, nil, 2, 0)
|
|
}
|