We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1693bb commit a0bdc5dCopy full SHA for a0bdc5d
2 files changed
dydx3/modules/eth.py
@@ -330,10 +330,11 @@ def transfer_eth(
330
raise ValueError('human_amount is required')
331
332
return self.send_eth_transaction(
333
- options={
334
- 'to': to_address,
335
- 'value': Web3.toWei(human_amount, 'ether'),
336
- }
+ options=dict(
+ send_options,
+ to=to_address,
+ value=Web3.toWei(human_amount, 'ether'),
337
+ ),
338
)
339
340
def transfer_token(
setup.py
@@ -19,7 +19,7 @@
19
20
setup(
21
name='dydx-v3-python',
22
- version='1.0.9',
+ version='1.0.10',
23
packages=find_packages(),
24
package_data={
25
'dydx3': [
0 commit comments