We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looking at testSolve in MagicAnimalCarousel.t.sol there is some complicated logic there, while it is enough to simply do
testSolve
MagicAnimalCarousel.t.sol
instance.changeAnimal("horse", 1);
because changeAnimal has a line encodedAnimal << 160 while it in fact should be encodedAnimal << 176. Is this intended or I am missing something?
changeAnimal
encodedAnimal << 160
encodedAnimal << 176
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looking at
testSolve
inMagicAnimalCarousel.t.sol
there is some complicated logic there, while it is enough to simply dobecause
changeAnimal
has a lineencodedAnimal << 160
while it in fact should beencodedAnimal << 176
.Is this intended or I am missing something?
The text was updated successfully, but these errors were encountered: