Skip to content

Commit

Permalink
cleanup: remove outdated comments and unused files
Browse files Browse the repository at this point in the history
ERC1271 probably was there as part of account abstraction support, but that's not in master, so neither should be those files.
  • Loading branch information
jtakalai committed Nov 28, 2024
1 parent 7bbc27e commit b55a2c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 90 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ import "../IERC677.sol";
import "../IERC677Receiver.sol";

/**
* Mintable TestToken for contract tests
* Transfers of 666 are rejected with return value false
* Freely mintable TestToken for contract tests.
* Mostly very similar to DATAv2, TODO: use the real DATAv2 instead.
*/
contract TestToken is ERC20, IERC677 {
constructor (string memory name, string memory symbol) ERC20(name, symbol) {
// solhint-disable-previous-line no-empty-blocks
}

/**
* Token contract owner can create tokens
* @param recipient address where new tokens are transferred (from 0x0)
* @param amount scaled so that 10^18 equals 1 token (multiply by 10^18)
*/
Expand Down
87 changes: 0 additions & 87 deletions packages/network-contracts/contracts/testContracts/MockERC1271.sol

This file was deleted.

0 comments on commit b55a2c3

Please sign in to comment.