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.
I've asked for help in the Truffle Gitter before filing this issue.
Issue
I'm trying to deploy a few contracts using Truffle, however when I call truffle migrate no result is returned (the process doesn't terminate), it gets stuck here:
From the output you provided (thank you!) it looks like Truffle was never able to verify that the contract was mined successfully. On your geth private blockchain, are you mining by chance? If not, then transactions won't be processed correctly, and migrations won't complete successfully.
A little history tidbit: Way early on in Truffle we removed any kind of timeout from migrations because you might be deploying to a live chain -- and if there's congestion, especially early on in Ethereum's history, transactions could take hours to succeed. A timeout in this case would cause you to lose your Ether and put the migration in a unknown state. So we decided to remove the timeout, hence giving the appearance that the migration is hanging. The eth_getFilterChanges requests you're seeing are Truffle polling to see if the transaction was mined successfully.
@tcoulter Thanks for the reply! I actually ended up switching to parity. You're right though, I think I wasn't mining which was causing the migrations to not complete.
Issue
I'm trying to deploy a few contracts using Truffle, however when I call
truffle migrate
no result is returned (the process doesn't terminate), it gets stuck here:Steps to Reproduce
geth
usingpuppeth
by following this tutorialnpm install -g truffle
in an empty directorytruffle init
truffle compile
truffle migrate
, here is where the script will not terminate (freeze)Expected Behavior
I expect the script to terminate after calling
truffle migrate
and return the address of the deployed contract.Actual Results
In addition to the above error, when I call
truffle migrate
with the--verbose-rp
flag I get the following output:Environment
The text was updated successfully, but these errors were encountered: