|
@@ -9,7 +9,7 @@ contract ShowTrader is ShowOwnership {
|
|
|
mapping (uint=>uint) public showToPrice;
|
|
|
mapping (address=>uint) public ownerAccount;
|
|
|
mapping (address=>bool) accountIsInit;
|
|
|
- uint productsCount;
|
|
|
+ uint public productsCount;
|
|
|
|
|
|
constructor () public {
|
|
|
productsCount = 0;
|
|
@@ -56,4 +56,4 @@ contract ShowTrader is ShowOwnership {
|
|
|
showToPrice[id] = price;
|
|
|
emit Sell(id, price);
|
|
|
}
|
|
|
-}
|
|
|
+}
|