The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/internal/genesis/foundational_test.go

16 lines
494 B

package genesis
import "testing"
func TestFoundationalNodeAccounts(t *testing.T) {
for name, accounts := range map[string][]DeployAccount{
"V0": FoundationalNodeAccounts,
"V0_1": FoundationalNodeAccountsV0_1,
"V0_2": FoundationalNodeAccountsV0_2,
// V0_3 exempted due to historical mistakes (dups at 187/204 & 202/205)
//"V0_3": FoundationalNodeAccountsV0_3,
"V0_4": FoundationalNodeAccountsV0_4,
} {
t.Run(name, func(t *testing.T) { testDeployAccounts(t, accounts) })
}
}