(id uint32)
| 118 | } |
| 119 | |
| 120 | func GetNetworkName(id uint32) string { |
| 121 | name, ok := NETWORK_NAME[id] |
| 122 | if ok { |
| 123 | return name |
| 124 | } |
| 125 | return fmt.Sprintf("%d", id) |
| 126 | } |
| 127 | |
| 128 | var DefConfig = NewBlockchainConfig() |
| 129 |
no outgoing calls
no test coverage detected