Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

get - Error: Returned values aren't valid, did it run Out of Gas?

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));
}
question from:https://stackoverflow.com/questions/65602194/error-returned-values-arent-valid-did-it-run-out-of-gas

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...