Skip to content

Commit

Permalink
DeclarationError: Identifier not found
Browse files Browse the repository at this point in the history
DeclarationError: Identifier not found or not unique.
contract SportsBook is Escrow
  • Loading branch information
cNoveron committed Feb 1, 2020
1 parent 94ef8f2 commit 406cb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/SportsBook.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "./ReentrancyGuard.sol";
* @dev Base abstract escrow to only allow withdrawal if a condition is met.
* @dev Intended usage: See Escrow.sol. Same usage guidelines apply here.
*/
contract SportsBook is Escrow, WhitelistAdminRole, ReentrancyGuard {
contract SportsBook is WhitelistAdminRole, ReentrancyGuard {
using SafeMath for uint256;

event Deposited(address indexed payee, uint256 weiAmount);
Expand Down

0 comments on commit 406cb07

Please sign in to comment.