Remove unused param in Pool struct

This commit is contained in:
Amir Bandeali
2019-10-14 09:45:37 +09:00
parent c21932d149
commit 9a5752fff9
2 changed files with 0 additions and 3 deletions

View File

@@ -94,11 +94,9 @@ interface IStructs {
}
/// @dev Holds the metadata for a staking pool.
/// @param initialized True iff the balance struct is initialized.
/// @param operator of the pool.
/// @param operatorShare Fraction of the total balance owned by the operator, in ppm.
struct Pool {
bool initialized;
address payable operator;
uint32 operatorShare;
}

View File

@@ -65,7 +65,6 @@ contract MixinStakingPool is
// create and store pool
IStructs.Pool memory pool = IStructs.Pool({
initialized: true,
operator: operator,
operatorShare: operatorShare
});