File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 17
17
package bind
18
18
19
19
import (
20
+ "context"
20
21
"crypto/ecdsa"
21
22
"errors"
22
23
"io"
@@ -72,6 +73,7 @@ func NewKeyStoreTransactor(keystore *keystore.KeyStore, account accounts.Account
72
73
}
73
74
return tx .WithSignature (signer , signature )
74
75
},
76
+ Context : context .Background (),
75
77
}, nil
76
78
}
77
79
@@ -95,6 +97,7 @@ func NewKeyedTransactor(key *ecdsa.PrivateKey) *TransactOpts {
95
97
}
96
98
return tx .WithSignature (signer , signature )
97
99
},
100
+ Context : context .Background (),
98
101
}
99
102
}
100
103
@@ -131,6 +134,7 @@ func NewKeyStoreTransactorWithChainID(keystore *keystore.KeyStore, account accou
131
134
}
132
135
return tx .WithSignature (signer , signature )
133
136
},
137
+ Context : context .Background (),
134
138
}, nil
135
139
}
136
140
@@ -154,5 +158,6 @@ func NewKeyedTransactorWithChainID(key *ecdsa.PrivateKey, chainID *big.Int) (*Tr
154
158
}
155
159
return tx .WithSignature (signer , signature )
156
160
},
161
+ Context : context .Background (),
157
162
}, nil
158
163
}
You can’t perform that action at this time.
0 commit comments