(key state.NyPublicKey)
| 369 | } |
| 370 | |
| 371 | func keyString(key state.NyPublicKey) string { |
| 372 | text, err := key.MarshalText() |
| 373 | if err != nil { |
| 374 | return "" |
| 375 | } |
| 376 | return string(text) |
| 377 | } |
| 378 | |
| 379 | func stringPtr(v string) *string { |
| 380 | return &v |
no test coverage detected