transactions icon indicating copy to clipboard operation
transactions copied to clipboard

📟 transactions: Bitcoin for humans

Results 7 transactions issues
Sort by recently updated
recently updated
newest added

``` Traceback (most recent call last): File "/home/semyon/Programming/Python/bitcoin/main.py", line 8, in tx = transactions.create(alice, (bob, 117432)) File "/home/semyon/Programming/Python/bitcoin/venv/lib/python3.6/site-packages/transactions/transactions.py", line 114, in simple_transaction inputs, change = self._select_inputs(from_address, amount, n_outputs, min_confirmations=min_confirmations) File...

I'm a dumbass and put an apostrophe in mine, and thus cannot get my funds hahaha.

must take care of putting this in a different release, and possibly documenting it as a breaking change

enhancement

mainly for simplification purposes, such that instead of having something like: ``` python class transactions.services.service.BitcoinService(testnet=False) ``` we can have something like: ``` python class transactions.services.BitcoinService(testnet=False) ``` and perhaps, simplifying further:...

enhancement

a proposal to simplify the interface and remove redundancy ``` python Transaction.build() ``` appears simpler and less redundant than ``` python Transaction.build_transaction() ``` Since `build_transaction` appears to be more of...

enhancement

https://docs.python.org/2/library/functions.html#input

enhancement