Recipient address is not a contract address
Attempting to run transaction which calls a contract function, but recipient address 0x80f5dfa6fa272eb90abad7974992e4d8f6631360
is not a contract address.
I am using truffle framework and after migrating the contracts i want get the structure value .
so I got an instance of my contract by
Participants.deployed().then(function(i) { DApp = i; })
In DApp I got all the properties but when i am trying to get the array value like
DApp.participants(1).then(function(c){participant = c;})
while printing participant i am getting the issue .
sibabrat Asked question