solana/agent: add extra context to SubmitVAA errors
Co-authored-by: Hendrik Hofstadt <hendrik@nexantic.com> Change-Id: I5e2b9120e0626ba4e5021f3012802e2d3978584e
This commit is contained in:
parent
a2ff5ca73c
commit
c1c2c7ae49
|
@ -110,7 +110,7 @@ impl Agent for AgentImpl {
|
||||||
})),
|
})),
|
||||||
Err(e) => Err(Status::new(
|
Err(e) => Err(Status::new(
|
||||||
Code::Internal,
|
Code::Internal,
|
||||||
format!("tx sending failed: {}", e),
|
format!("tx sending failed: {:?}", e),
|
||||||
)),
|
)),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue