Skip to content

Commit

Permalink
fix: dumper
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Nov 14, 2024
1 parent f7d4066 commit 9711304
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract Deploy is Script {
// Append constructor args to the bytecode
bytes memory bytecode = abi.encodePacked(
vm.getCode("splitter/Dumper.sol:Dumper"),
abi.encode(0x16388463d60FFE0661Cf7F1f31a7D658aC790ff7, 0x5A74Cb32D36f2f517DB6f7b0A0591e09b22cDE69, 0xd6748776CF06a80EbE36cd83D325B31bb916bf54, 0xBe53A109B494E5c9f97b9Cd39Fe969BE68BF6204)
abi.encode()
);

// Use salt of 0.
Expand Down
2 changes: 1 addition & 1 deletion src/splitter/Dumper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Governance} from "@periphery/utils/Governance.sol";
import {Accountant, ERC20, SafeERC20} from "../accountants/Accountant.sol";

interface IAuction {
function kick(address _token) external view returns (uint256);
function kick(address _token) external returns (uint256);
}

contract Dumper is Governance {
Expand Down
4 changes: 2 additions & 2 deletions src/test/splitter/TestSplitter.t.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.18;

import {Setup, ISplitter, ISplitterFactory, IVault, MockTokenized} from "../utils/Setup.sol";
import {Setup, ISplitter, ISplitterFactory, IVault, Accountant, MockTokenized} from "../utils/Setup.sol";


contract TestSplitter is Setup {
event UpdateManagerRecipient(address indexed newManagerRecipient);
Expand All @@ -12,7 +13,6 @@ contract TestSplitter is Setup {

IVault public vault;
MockTokenized public mockTokenized;

function setUp() public override {
super.setUp();
(splitterFactory, splitter) = setupSplitter();
Expand Down

0 comments on commit 9711304

Please sign in to comment.