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
{{ message }}
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
We have a few checks on the owner of both proxies and App contracts, to validate that the sender account does indeed have rights to perform certain actions. However, if the user does not explicitly set the sender account (via a --from or an entry in truffle.js), we are not checking it.
Add a method to get the sender account from the node (via web3.eth.getAccounts) and cache it, and check against that value when needed.
The text was updated successfully, but these errors were encountered:
We have a few checks on the
owner
of both proxies and App contracts, to validate that the sender account does indeed have rights to perform certain actions. However, if the user does not explicitly set the sender account (via a--from
or an entry intruffle.js
), we are not checking it.Add a method to get the sender account from the node (via
web3.eth.getAccounts
) and cache it, and check against that value when needed.The text was updated successfully, but these errors were encountered: