Skip to content

Commit

Permalink
fix: fix broken rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
sander2 committed Dec 12, 2023
1 parent dfa0463 commit 5955c04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions script/Marketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.13;
import {Script, console2} from "forge-std/Script.sol";
import {BtcMarketPlace} from "../src/swap/Btc_Marketplace.sol";
import {MarketPlace} from "../src/swap/Marketplace.sol";
import {DummyRelay} from "../src/relay/DummyRelay.sol";
import {TestLightRelay} from "../src/relay/TestLightRelay.sol";

contract MarketplaceScript is Script {
function setUp() public {}
Expand All @@ -15,7 +15,7 @@ contract MarketplaceScript is Script {
address forwarder = vm.envAddress("FORWARDER_ADDRESS");

vm.startBroadcast(deployerPrivateKey);
BtcMarketPlace btcMarketplace = new BtcMarketPlace(new DummyRelay(), forwarder);
BtcMarketPlace btcMarketplace = new BtcMarketPlace(new TestLightRelay(), forwarder);
MarketPlace marketplace = new MarketPlace(forwarder);

vm.stopBroadcast();
Expand Down
2 changes: 1 addition & 1 deletion src/faucet/Erc20Minter.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
pragma solidity ^0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/swap/Btc_Marketplace.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ contract MarketPlaceTest is BtcMarketPlace, Test {
ArbitaryErc20 token1;
TestLightRelay testLightRelay;

constructor() BtcMarketPlace(testLightRelay) {}
constructor() BtcMarketPlace(testLightRelay, address(0x00)) {}

function setUp() public {
utils = new Utilities();
Expand Down

0 comments on commit 5955c04

Please sign in to comment.