해결된 질문
작성
·
195
0
getHashCont : function(c_code){
return new Promise(function(resolve, reject){
agContract.methods.getContHash(c_code).call().then(function(name){
if(name){
console.log("bmodul: "+name);
resolve(name);
}else{
console.log("No value in the blockchain");
}
reject(new Error("No value in the blockchain."));
})
});
}
를 통해 데이터를 불러올 때
아래의 에러가 뜹니다....
Uncaught (in promise) Error: Returned values aren't valid, did it run Out of Gas?
at ABICoder.decodeParameters (index.js:220)
at Contract._decodeMethodReturn (index.js:796)
at Method.outputFormatter (index.js:1347)
at _formatOutput (index.js:216)
at Method.formatOutput (index.js:223)
at eval (index.js:270)
at eval (index.js:218)
at XMLHttpRequest.request.onreadystatechange (index.js:140)
at XMLHttpRequestEventTarget.dispatchEvent (xml-http-request-event-target.js:34)
at XMLHttpRequest._setReadyState (xml-http-request.js:208)
그리고, 다시 truffle을 deploy하려고 할 때,
truffle : 'truffle' 용어가 cmdlet, 함수, 스크립트 파일 또는 실행할 수 있는 프로그램 이름으로 인식되지 않습니
다. 이름이 정확한지 확인하고 경로가 포함된 경우 경로가 올바른지 검증한 다음 다시 시도하십시오.
위치 줄:1 문자:1
+ truffle
+ ~~~~~~~
+ CategoryInfo : ObjectNotFound: (truffle:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
이 오류가 뜹니다...
답변 2
0
0