ErrorResponse
interface ErrorResponse {
// example
// status: 400,
// method: 'post',
// url: 'http://127.0.0.1:24321/builder/send',
// error_code: 'P01D101',
// request_body: '{"_hint":"mitum-currency-transfer-operation-v0.0.1","fact":{....}}'
// error_message: 'handle new operation invalid signing : check threshold unknown key found, 26vyVJFoLZqVPmP8UADoNCsEyJYD4498vdy7uoiHgFKRUmpu'
status?: number;
method: string | undefined;
url: string | undefined;
error_code: string;
request_body: string | undefined;
error_message: string;
}Example
Last updated