Browse Source

remove create limitation

邓心一 6 years ago
parent
commit
1864090c5a
1 changed files with 1 additions and 1 deletions
  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);
     }
 }