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);
     }
 }