mirror of
https://github.com/luxfi/genesis.git
synced 2026-07-27 04:11:41 +00:00
- mainnet: 100 accounts x 500M LUX, 5 stakers, P-lux1 HRP, real IPs - testnet: 100 accounts x 500M LUX, 2 stakers, P-test1 HRP, networkID=2 - devnet: 100 accounts x 500M LUX, 3 stakers, P-dev1 HRP, networkID=3 - bootstrappers: real validator IPs - fix mnemonic env priority: MNEMONIC > LUX_MNEMONIC > LIGHT_MNEMONIC - remove stale .bak files
18 lines
344 B
Go
18 lines
344 B
Go
package configs
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestListEmbed(t *testing.T) {
|
|
entries, err := embeddedGenesis.ReadDir("mainnet")
|
|
if err != nil {
|
|
t.Fatalf("Error reading mainnet dir: %v", err)
|
|
}
|
|
t.Logf("Files embedded in mainnet/:")
|
|
for _, e := range entries {
|
|
info, _ := e.Info()
|
|
t.Logf(" - %s (%d bytes)", e.Name(), info.Size())
|
|
}
|
|
}
|