Closed FabijanC closed 2 years ago
Same issue as reported here: https://github.com/OpenZeppelin/cairo-contracts/issues/471
To enable simulation and fee estimation, QUERY_VERSION (which is equal to 2**128 + TRANSACTION_VERSION) should be allowed in this line, not just TRANSACTION_VERSION: https://github.com/argentlabs/argent-contracts-starknet/blob/a98731015b0f5be7071084da0459f95e0ef2ef43/contracts/account/library.cairo#L140
QUERY_VERSION
2**128 + TRANSACTION_VERSION
TRANSACTION_VERSION
Thanks @FabijanC for flagging this. Can you have a look at #63 and approve if ok?
Same issue as reported here: https://github.com/OpenZeppelin/cairo-contracts/issues/471
To enable simulation and fee estimation,
QUERY_VERSION
(which is equal to2**128 + TRANSACTION_VERSION
) should be allowed in this line, not justTRANSACTION_VERSION
: https://github.com/argentlabs/argent-contracts-starknet/blob/a98731015b0f5be7071084da0459f95e0ef2ef43/contracts/account/library.cairo#L140