Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
cd07e1b
Remove cross-chain contracts
Amxx May 16, 2023
42b3aef
Remove Escrow & PullPayment contracts
Amxx May 16, 2023
ff68a57
Remove ERC777
Amxx May 16, 2023
18e63a7
Update documentation's nav
Amxx May 16, 2023
64bf67c
add changeset
Amxx May 16, 2023
aeb12fa
Remove the Timer libary
Amxx May 16, 2023
0ea8756
Remove deprecated draft-xxx files.
Amxx May 16, 2023
3344612
Remove getters with error strings
Amxx May 16, 2023
5624e52
Remove SafeERC20.safeApprove
Amxx May 16, 2023
0a3ccc2
Remove AccessControl._setupRole
Amxx May 16, 2023
f3e4e14
Remove deprecated getters in Proxy & deprecated error code in ECDSA
Amxx May 16, 2023
a06d55f
Remove GovernorProposalThreshold
Amxx May 16, 2023
a949b62
Remove ERC1820Implementer
Amxx May 16, 2023
6831f92
fix lint
Amxx May 16, 2023
7b385c6
remove tests for ERC1820Implementer
Amxx May 16, 2023
cd0407f
fix test/urils/Create2.test.js dependency on ERC1820Implementer
Amxx May 16, 2023
edc27fe
remove deprecated and duplicate storage
Amxx May 16, 2023
69c5dee
Remove Checkpoints.History
Amxx May 17, 2023
c974e7f
Remove SafeMath.sol and move tryXxx function to Math.sol
Amxx May 17, 2023
d39ab48
re-add PullPayment (with immutable ownership of the Escrow)
Amxx May 17, 2023
b2be20e
Revert "re-add PullPayment (with immutable ownership of the Escrow)"
Amxx May 17, 2023
f714926
Update "_Available since" for tryXxx operations
Amxx May 19, 2023
15639d7
Apply suggestions from code review
Amxx May 19, 2023
e519bc3
Update Math.test.js
Amxx May 19, 2023
2cd0d41
cleanup EnumerableMap.test.js
Amxx May 19, 2023
815bf2a
cleanup Checkpoints tests
Amxx May 19, 2023
a19eb6a
retreive checkpoint sizes from the generation scripts
Amxx May 19, 2023
d0e778f
fix foundry test
Amxx May 19, 2023
932ae59
Fix upgradeable.patch
Amxx May 19, 2023
b9991cc
Update .changeset/selfish-queens-rest.md
Amxx May 19, 2023
4d11483
add missing await
frangio May 19, 2023
32b6b60
Remove SignedSafeMath library and tests
Amxx May 19, 2023
e21211b
remove mention to SafeMath in SafeCast
Amxx May 19, 2023
9456fce
Update test/utils/Create2.test.js
Amxx May 19, 2023
2d2e8fa
Update test/utils/Checkpoints.test.js
frangio May 19, 2023
9193cea
remove mention of safemath from template
frangio May 19, 2023
41732d3
remove ERC-1820 docs and move interfaces
frangio May 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test/utils/Create2.test.js
Co-authored-by: Francisco <[email protected]>
  • Loading branch information
Amxx and frangio authored May 19, 2023
commit 9456fceaff6fcf77c2099a5fc7bff71ff25b6a1b
2 changes: 1 addition & 1 deletion test/utils/Create2.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract('Create2', function (accounts) {
});

describe('deploy', function () {
it('deploys a MinimalForwarder from inline assembly code', async function () {
it('deploys a contract without constructor', async function () {
const offChainComputed = computeCreate2Address(saltHex, ConstructorLessContract.bytecode, this.factory.address);

expectEvent(await this.factory.$deploy(0, saltHex, ConstructorLessContract.bytecode), 'return$deploy', {
Expand Down