I am developing ethereum contract. so I have set up ethereum server. I used this
geth --rpc console --datadir "ethdata" --networkid xxxxx --nodiscover --rpcaddr "xx.xx.x.xxx" -rpcport 8545 --rpccorsdomain * --rpcapi "web3,net,personal,eth" attach http://0.0.0.0:8545 mygenesis.json
to run ethereum server.
Ethereum server is working fine.
then I set up truffle with testrpc which is working fine. I try to truffle with my ethereum server. it displays like following
Expecting result:
finish migrate.
Actual result:
#truffle migrate
Running migration: 1_initial_migration.js
Deploying Migrations...
nothing happened for a long time
That's your geth.ipc path.
– Sanchit Jun 29 '17 at 06:57I did answer a similar question, on how to setup private net. That should help. If not then let's discuss on chat.
– Sanchit Jun 29 '17 at 07:50