You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deploying the dual721 contracts in tests, the caller needs to be set with set_contract_address (in place of set_caller_address) in Cairo v2.1.1. Otherwise, some of the dual721 tests fail. This occurs because the caller address passed to _mint in the constructor is 0. The dual721 mocks are the only mocks that use get_caller_address in the constructor; hence, these are the only tests that are failing
The text was updated successfully, but these errors were encountered:
When deploying the dual721 contracts in tests, the caller needs to be set with
set_contract_address
(in place ofset_caller_address
) in Cairo v2.1.1. Otherwise, some of the dual721 tests fail. This occurs because the caller address passed to_mint
in the constructor is0
. The dual721 mocks are the only mocks that useget_caller_address
in the constructor; hence, these are the only tests that are failingThe text was updated successfully, but these errors were encountered: