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 Feb 26, 2024. It is now read-only.
When I deploy contracts to Arbitrum Testnet, it often happens that tx is null. When tx==null, the deployment will run down!
This might happen on some nodes that use load balancing. The user is not connecting to the same node at the time of deployment as the node at the time of query, and the data on those nodes is out of sync.
I added if (!tx) return this.postDeploy(data); in my local area and it works fine, please evaluate if it can be modified in this way.
The text was updated successfully, but these errors were encountered:
truffle/packages/reporters/reporters/migrations-V5/reporter.js
Line 383 in f669d4b
When I deploy contracts to Arbitrum Testnet, it often happens that tx is null. When tx==null, the deployment will run down!
This might happen on some nodes that use load balancing. The user is not connecting to the same node at the time of deployment as the node at the time of query, and the data on those nodes is out of sync.
I added
if (!tx) return this.postDeploy(data);
in my local area and it works fine, please evaluate if it can be modified in this way.The text was updated successfully, but these errors were encountered: