diff --git a/accounts/abi/bind/base.go b/accounts/abi/bind/base.go index 0543c05ffa..25757f1d67 100644 --- a/accounts/abi/bind/base.go +++ b/accounts/abi/bind/base.go @@ -443,7 +443,7 @@ func (c *BoundContract) UnpackLogIntoMap(out map[string]interface{}, event strin // user specified it as such. func ensureContext(ctx context.Context) context.Context { if ctx == nil { - return context.TODO() + return context.Background() } return ctx }