mirror of
https://github.com/lightninglabs/pool.git
synced 2026-08-13 12:33:04 +02:00
server: add nonce to missing order errors
This commit is contained in:
parent
a036b5ea94
commit
9bdcb8e554
1 changed files with 2 additions and 1 deletions
|
|
@ -770,7 +770,8 @@ func (s *Server) syncLocalOrderState() error {
|
|||
context.Background(), orderNonce,
|
||||
)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to fetch order state: %v", err)
|
||||
return fmt.Errorf("unable to fetch order(%v): %v",
|
||||
orderNonce, err)
|
||||
}
|
||||
remoteOrderState, err := rpcOrderStateToDBState(
|
||||
orderStateResp.State,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue