(_owner, _symbol, _name)
| 20 | let securityTokenRegistryAddress; |
| 21 | |
| 22 | function Ticker(_owner, _symbol, _name) { |
| 23 | this.owner = _owner; |
| 24 | this.symbol = _symbol; |
| 25 | this.name = _name; |
| 26 | } |
| 27 | |
| 28 | function FailedRegistration(_ticker, _error) { |
| 29 | this.ticker = _ticker; |
nothing calls this directly
no outgoing calls
no test coverage detected