From 37c1f4842ae0ef2772c263d0b388175c432f224b Mon Sep 17 00:00:00 2001 From: adeelhasan Date: Sun, 23 Apr 2023 12:06:02 -0400 Subject: [PATCH] Update Shop.sol a small change to follow naming conventions --- contracts/contracts/levels/Shop.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/contracts/levels/Shop.sol b/contracts/contracts/levels/Shop.sol index 69e248ad9..546d1dc51 100644 --- a/contracts/contracts/levels/Shop.sol +++ b/contracts/contracts/levels/Shop.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; -interface Buyer { +interface IBuyer { function price() external view returns (uint); }