Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyamSB committed Mar 26, 2018
1 parent da745fd commit b7560e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/TickerRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ contract TickerRegistry is ITickerRegistry, Ownable {
*/
function registerTicker(string _symbol, string _tokenName) public {
require(expiryCheck(_symbol));
registeredSymbols[_symbol] = SymbolDetails(msg.sender, now, "", false);
registeredSymbols[_symbol] = SymbolDetails(msg.sender, now, _tokenName, false);
LogRegisterTicker(msg.sender, _symbol, _tokenName, now);
}

Expand Down

0 comments on commit b7560e8

Please sign in to comment.