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/localnodes_test.go

16 lines
442 B

package genesis
import "testing"
func TestLocalTestAccounts(t *testing.T) {
for name, accounts := range map[string][]DeployAccount{
"WoopV0": LocalWoopAccounts,
"WoopV1": LocalWoopAccountsV1,
"WoopV2": LocalWoopAccountsV2,
"FoundationalV0": LocalFnAccounts,
"FoundationalV1": LocalFnAccountsV1,
"FoundationalV2": LocalFnAccountsV2,
} {
t.Run(name, func(t *testing.T) { testDeployAccounts(t, accounts) })
}
}