getApplicationLog
Input Arguments
Parameter
Description
Success Response
Error Response
Parameter
Description
Example
Request
neoline.getApplicationLog({
txid: '7e049fd7c253dabf38e4156df30c78b30d49f307196aa89b99a47d2330789bf2',
network: 'TestNet'
})
.then(result => {
console.log('Application log of transaction execution: ' + JSON.stringify(result));
})
.catch((error) => {
const {type, description, data} = error;
switch(type) {
case 'NO_PROVIDER':
console.log('No provider available.');
break;
case 'RPC_ERROR':
console.log('There was an error when broadcasting this transaction to the network.');
break;
default:
// Not an expected error object. Just write the error to the console.
console.error(error);
break;
}
});Response
最后更新于