Skip to content

Commit

Permalink
test: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
0xvv committed Oct 1, 2023
1 parent a2dd4a4 commit 634e4ef
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions test/mock/DepositContractTestable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,7 @@ import "../../src/interface/IDeposit.sol";

contract DepositContractTestable is IDeposit {
uint256 public deposit_count;

bytes32[] public depositDataRoots;
bytes[] public depositPubkeys;
bytes[] public depositWithdrawalCredentials;
bytes[] public depositSignatures;


event DepositEvent(bytes pubkey, bytes withdrawal_credentials, bytes signature, bytes32 deposit_data_root);

function deposit(
Expand All @@ -30,11 +25,6 @@ contract DepositContractTestable is IDeposit {
) external payable override {
deposit_count += 1;
emit DepositEvent(pubkey, withdrawal_credentials, signature, deposit_data_root);
/*
depositDataRoots.push(deposit_data_root);
depositPubkeys.push(pubkey);
depositWithdrawalCredentials.push(withdrawal_credentials);
depositSignatures.push(signature);
*/

}
}

0 comments on commit 634e4ef

Please sign in to comment.