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 Mar 11, 2024. It is now read-only.
hello !
I am trying to migrate a contract to the 7 nodes example from the quorum repository.
i got this error
Error encountered, bailing. Network state unknown. Review successful transactions manually.
Error: The contract code couldn't be stored, please check your gas amount.
@moda20 Yes, this is a generic error thrown by web3 when it tries to new a contract but can't retrieve the contract code from the network after the transaction completes. This can be thrown for non-gas related reasons - a common one is that the contract's constructor contains require statements that throw an error.
Not sure what client you are using but I believe it's necessary to run Parity with a Geth mode flag to reliably avoid this error as well.
@cgewecke i am running the 7 nodes example form the official quorum repo, and that launches geth nodes. I am just using truffle from terminal and never used parity, but i will check my code more. at least now i know it is not gas problem.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hello !
I am trying to migrate a contract to the 7 nodes example from the quorum repository.
i got this error
This is my truffle.Js
How is this gas related error even possible, isn't quorum letting the gas thing and the mining for some other ways ?
is this a generic error
The text was updated successfully, but these errors were encountered: