I tried this but didn't get any success.

This is my project structure :
├── build
│ └── contracts
│ ├── Migrations.json
│ └── UserDetails.json
├── contracts
│ ├── Migrations.sol
│ └── UserDetails.sol
├── genesis.json
├── instructions.txt
├── migrations
│ ├── 1_initial_migration.js
│ └── 2_UserDetails.js
├── privchain
│ ├── geth
│ │ ├── chaindata
│ │ │ ├── 000004.ldb
│ │ │ ├── 000005.log
│ │ │ ├── CURRENT
│ │ │ ├── LOCK
│ │ │ ├── LOG
│ │ │ └── MANIFEST-000006
│ │ ├── lightchaindata
│ │ │ ├── 000001.log
│ │ │ ├── CURRENT
│ │ │ ├── LOCK
│ │ │ ├── LOG
│ │ │ └── MANIFEST-000000
│ │ ├── LOCK
│ │ ├── nodekey
│ │ └── transactions.rlp
│ ├── geth.ipc
│ └── keystore
│ └── UTC--2018-05-12T19-08-43.542156605Z--3752326a0e1300e5fe48f964a904e93a5fe8a0f8
├── test
├── truffle-config.js
└── truffle.js

May 12, 2018, 7:10 PM
my genesis.json file :

{
"config": {
"chainId": 33,
"homesteadBlock": 0,
"eip155Block": 0,
"eip158Block": 0
},
"nonce": "0x0000000000000033",
"timestamp": "0x0",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"gasLimit": "0x8000000",
"difficulty": "0x100",
"mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coinbase": "0x3333333333333333333333333333333333333333",
"alloc": {}
}
May 12, 2018, 7:11 PM

© 2024 Draquery.com All rights reserved.