Skip to content

Commit f531173

Browse files
committed
fix nil pointer when search fails
1 parent 3a9ae32 commit f531173

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmd/boost/direct_deal.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -321,12 +321,12 @@ var directDealAllocate = &cli.Command{
321321
eg.Go(func() error {
322322
wait, err := gapi.StateWaitMsg(ctx, m, uint64(cctx.Int("confidence")), 2000, true)
323323
if err != nil {
324-
return fmt.Errorf("timeout waiting for message to land on chain %s", wait.Message)
324+
return fmt.Errorf("timeout waiting for message to land on chain %s", m.String())
325325

326326
}
327327

328328
if wait.Receipt.ExitCode.IsError() {
329-
return fmt.Errorf("failed to execute message %s: %w", wait.Message, wait.Receipt.ExitCode)
329+
return fmt.Errorf("failed to execute message %s: %w", m.String(), wait.Receipt.ExitCode)
330330
}
331331
return nil
332332
})
@@ -687,12 +687,12 @@ If the client id different then claim can be extended up to maximum 5 years from
687687
eg.Go(func() error {
688688
wait, err := gapi.StateWaitMsg(ctx, m, uint64(cctx.Int("confidence")), 2000, true)
689689
if err != nil {
690-
return fmt.Errorf("timeout waiting for message to land on chain %s", wait.Message)
690+
return fmt.Errorf("timeout waiting for message to land on chain %s", m.String())
691691

692692
}
693693

694694
if wait.Receipt.ExitCode.IsError() {
695-
return fmt.Errorf("failed to execute message %s: %w", wait.Message, wait.Receipt.ExitCode)
695+
return fmt.Errorf("failed to execute message %s: %w", m.String(), wait.Receipt.ExitCode)
696696
}
697697
return nil
698698
})

0 commit comments

Comments
 (0)