From b7560e8d993a8a5dd9683b6d8cb66295cefada5b Mon Sep 17 00:00:00 2001 From: satyam Date: Mon, 26 Mar 2018 18:31:39 +0530 Subject: [PATCH] fix bug --- contracts/TickerRegistry.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/TickerRegistry.sol b/contracts/TickerRegistry.sol index 89539f41d..2f07c7767 100644 --- a/contracts/TickerRegistry.sol +++ b/contracts/TickerRegistry.sol @@ -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); }