solana/agent: add extra context to SubmitVAA errors

Co-authored-by: Hendrik Hofstadt <hendrik@nexantic.com>
Change-Id: I5e2b9120e0626ba4e5021f3012802e2d3978584e
This commit is contained in:
Leo 2021-03-08 21:28:21 +01:00 committed by Leopold Schabel
parent a2ff5ca73c
commit c1c2c7ae49
1 changed files with 1 additions and 1 deletions

View File

@ -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),
)), )),
} }
}) })