-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'straggler-files' into deploy-v1.2.0
- Loading branch information
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity ^0.8.13; | ||
|
||
import {Account as TBA} from "tokenbound/src/Account.sol"; | ||
import {BotAccount} from "0xrails/cores/account/BotAccount.sol"; | ||
|
||
abstract contract Account { | ||
// create Account that supports NFT receivers to avoid fuzz errors on existing contracts in testing ops | ||
function createAccount() public returns (address) { | ||
return address(new TBA(address(0))); | ||
return address(new BotAccount(address(0))); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters