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

14 lines
376 B

package genesis
import "testing"
func TestFoundationalNodeAccounts(t *testing.T) {
for name, accounts := range map[string][]DeployAccount{
"V0": FoundationalNodeAccounts,
"V1": FoundationalNodeAccountsV1,
"V1_1": FoundationalNodeAccountsV1_1,
"V1_2": FoundationalNodeAccountsV1_2,
} {
t.Run(name, func(t *testing.T) { testDeployAccounts(t, accounts) })
}
}