Skip to content

Commit 1700177

Browse files
committed
v1.1.0
* Added Payouts * Minor bugfixes
1 parent a241996 commit 1700177

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ from blockbee import BlockBeeHelper
7272

7373
bb = BlockBeeHelper(coin, own_address, callback_url, params, bb_params, api_key)
7474

75-
###
76-
7775
qr_code = bb.get_qrcode(value, size)
7876
```
7977
For object creation, same parameters as before. You must first call ``getAddress` as this method requires the payment address to have been created.
@@ -105,7 +103,9 @@ Where:
105103
```python
106104
from blockbee import BlockBeeHelper
107105

108-
conversion = BlockBeeHelper.get_conversion(value, from_coin, api_key)
106+
bb = BlockBeeHelper(coin, own_address, callback_url, params, bb_params, api_key)
107+
108+
conversion = bb.get_conversion(value, from_coin, api_key)
109109
```
110110
Where:
111111
* ``coin`` the target currency to convert to, from BlockBee's supported currencies (e.g 'btc', 'eth', 'erc20_usdt', ...)

0 commit comments

Comments
 (0)