mirror of
https://github.com/forta-network/go-multicall.git
synced 2026-05-21 15:29:30 +00:00
AllowFailure nil
This commit is contained in:
parent
019903a6ac
commit
07b7d5b7f3
1 changed files with 3 additions and 0 deletions
3
call.go
3
call.go
|
|
@ -74,6 +74,9 @@ func (call *Call) SetExtend(ext any) *Call {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (call *Call) UnpackResult() []interface{} {
|
func (call *Call) UnpackResult() []interface{} {
|
||||||
|
if call.Outputs == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return call.Outputs.([]interface{})
|
return call.Outputs.([]interface{})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue