We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f951c1 + bd7dc8c commit f2edfc7Copy full SHA for f2edfc7
1 file changed
actors/v2/multisig/multisig.go
@@ -72,7 +72,9 @@ func (m *Msig) Propose(network string, msg *parser.LotusMessage, height int64, p
72
return nil, err
73
}
74
applied, exitCode, innerReturnRaw, innerReturnParsed, err := getProposeReturn(network, height, rawReturn)
75
- if err != nil {
+ // Proposed send transactions may not have a return value
76
+ // See: bafy2bzaceccw7kebcqvs6hz7ckfgndbydm7l3sludmd7vk4ji2d4dgsiduwoo on Calibration
77
+ if err != nil && len(rawReturn) > 0 {
78
79
80
0 commit comments