1
0
Преглед на файлове

remove create limitation

邓心一 преди 6 години
родител
ревизия
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);
     }
 }