Update chai matchers (#4899)

Co-authored-by: ernestognw <ernestognw@gmail.com>
This commit is contained in:
Renan Souza
2024-02-19 15:27:39 -03:00
committed by GitHub
parent 3def8f9d15
commit 141c947921
4 changed files with 9 additions and 9 deletions

View File

@ -47,9 +47,9 @@ library Panic {
function panic(uint256 code) internal pure {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, shl(0xe0, 0x4e487b71))
mstore(0x04, code)
revert(0x00, 0x24)
mstore(0x00, 0x4e487b71)
mstore(0x20, code)
revert(0x1c, 0x24)
}
}
}