I created a mini-project with MVC and solidity contract named BankAccountContract the controller file getBalance() gives me this error:
Error: Returned values aren't valid, did it run Out of Gas? You might also see this error if you are not using the correct ABI for the contract you are retrieving data from, requesting data from a block number that does not exist, or querying a node which is not fully synced.
This is my piece of code:
exports.postgetBalance = (req, res) => { let ownerBalance = req.body.ownerbalance; Bank.methods.getBalance(ownerBalance).call().then(result => console.log(result)); }
1.4m articles
1.4m replys
5 comments
57.0k users