1
0
邓心一 6 лет назад
Родитель
Сommit
1864090c5a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      contracts/ShowFactory.sol

+ 1 - 1
contracts/ShowFactory.sol

@@ -29,7 +29,7 @@ contract ShowFactory is Ownable {
     }
 
     function createFirstShow(string name, bytes dance, bytes music) public {
-        require(ownerShowCount[msg.sender] == 0); // The 1st show is free
+        // require(ownerShowCount[msg.sender] == 0); // The 1st show is free
         _createShow(name, dance, music);
     }
 }