瀏覽代碼

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