Commit graph

561 commits

Author SHA1 Message Date
Harm Aarts
e57e55aad8 Remove explicit send calls, part deux (#4408)
* Rename synchronous_get to synchronous_send

This makes it more inline with the method 'send' of which
synchronous_send is the, well, synchronous version.

* Move protocol strings from scripts to network

This is again a small step in the right direction. The network module is
going to accumulate more and more of these simple methods. Once
everything is moved into that module, that module is going to be split.

Note that I've left the scripts which use scripts/util.py alone. I
suspect the same functionality can be reached when using just
lib/network.py and that scripts/util.py is obsolete.

* Remove protocol string from verifier and websocket

Websocket still has some references, that'll take more work to remove. Once the
network module has been split this should be easy.
I took the liberty to rename a variable to better show what it is.

* Remove protocol strings from remainder

The naming scheme I'm following for the newly introduced methods in the network
module is: 'blockchain.<subject>.<action>' -> def <action>_(for|to)_<subject>

* Move explicit protocol calls closer to each other

This makes it easier to keep track of the methods which are due to be
extracted.

* Remove `send` when using `get_transaction`

This is the final step to formalize (the informal) interface of the network
module.
A chance of note is changed interface for async/sync calls. It is no longer
required to use the `synchronous_send` call. Merely NOT passing a callback
makes the call synchronous. I feel this makes the API more intuitive to work
with and easier to replace with a different network module.

* Remove send from get_merkle_for_transaction

The pattern which emerged for calling the lambda yielded an slight refactor.
I'm not happy with the name for the `__invoke` method.

* Remove explict send from websockets

* Remove explicit send from scripts

* Remove explicit send from wallet

* Remove explicit sync_send from commands, scripts

* Remove optional timeout parameter

This parameter doesn't seem to be used a lot and removing it makes the
remaining calls easier. Potentionally a contentious choice!

* Rename `broadcast` to `broadcast_transaction`

Doing so makes the method name consistent with the other ElectrumX protocol
method names.

* Remove synchronous_send

Now every method is intuitive in what it does, no special handling required.
The `broadcast_transaction` method is weird. I've opted not to change the
return type b/c I found it hard to know what the exact consequences are. But
ideally this method should just works as all the other ElectrumX related
messages. On the other hand this shows nicely how you _can_ do something
differnt quite easy.

* Rename the awkwardly name `__invoke` method

The new name reflects what it does.

* Process the result of linter feedback

I've used flake8-diff (and ignored a couple of line length warnings).

* Rename tx_response to on_tx_response

This fell through the cracks when this branch was rebased.

* subscript_to_scripthash should be get_balance

An oversight while refactoring.

* Add missing return statement

Without this statement the transaction would have been broadcasted twice.

* Pass list of tuples to send not single tuple

* Add @staticmethod decorator

* Fix argument to be an array
2018-06-06 15:06:04 +02:00
SomberNight
2b84fba67b
storage upgrade as part of the wizard. fix storage upgrade on kivy. 2018-05-31 19:43:50 +02:00
SomberNight
c34273b771
(minor) missing space in message when deleting wallet 2018-05-29 13:40:36 +02:00
SomberNight
86992aea6c
bundle libsecp256k1 in android apk
this works as there is already a p4a recipe upstream: 74bf788a29/pythonforandroid/recipes/libsecp256k1/__init__.py
2018-05-28 00:43:05 +02:00
SomberNight
7c6364c2c7
update kivy readme 2018-05-07 17:46:13 +02:00
SomberNight
c03d68d758
add 'sat' as base unit option 2018-05-05 12:52:19 +02:00
Ben Woosley
53320470f5 Format the transaction window fee rate with 1 decimal place (#4286)
* Fix format_satoshi to properly handle non-integer values

Handling the integer and fraction parts together via string formatting
simplifies the initial composition because the default behavior manages
the - sign, and the incorporation of the fractional part.

* Limit fee rate output to one decimal place

Via a new precision arg

* Introduce format_fee_satoshis and use it for all fee display
2018-04-24 18:54:14 +02:00
SomberNight
a161b6e655
RBF: make sure we know the fee for the old txn
related #4306
2018-04-24 15:30:13 +02:00
Dimitris Apostolou
989c9c2b55 Fix typos 2018-04-15 20:34:40 +02:00
SomberNight
8bdf863fca
fix: android HistoryScreen was not displaying fiat value of unconfirmed txns 2018-04-12 16:49:25 +02:00
ThomasV
986985c398 fix #4255 2018-04-12 16:44:59 +02:00
SomberNight
3bf5afa61a
fix #4253 2018-04-12 12:17:24 +02:00
SomberNight
a852f97e97
kivy: change activity launchMode to singleTask 2018-04-10 14:12:13 +02:00
SomberNight
35b3294a5d
fix #4238 2018-04-09 12:00:37 +02:00
ThomasV
a03449c1be kivy: cleanup addresses dialog 2018-04-07 18:16:33 +02:00
ThomasV
445ef3c6ac remove print statement 2018-03-28 10:46:08 +02:00
ThomasV
b75d82491b kivy: request PIN code on startup 2018-03-25 11:45:33 +02:00
SomberNight
7939b32a1f minor kivy import fix 2018-03-24 23:51:35 +01:00
ThomasV
800c783580
Merge pull request #4115 from SomberNight/disallow_adding_requests_w_invalid_addresses
disallow adding receive requests without valid is_mine addresses
2018-03-22 15:34:05 +01:00
ThomasV
b009c56b9d kivy: save requests only with the save button 2018-03-13 10:42:56 +01:00
SomberNight
8e79d09511 disallow adding receive requests without valid is_mine addresses 2018-03-12 21:50:56 +01:00
SomberNight
b7f7da6cde fix kivy addresses search 2018-03-06 20:24:23 +01:00
ThomasV
971a6979ee kivy: do not open invoices, requests dialogs if list is empty 2018-03-06 19:36:57 +01:00
ThomasV
ca07399937 fix #4050 2018-03-06 18:07:38 +01:00
ThomasV
a6e23ae275 share icon file 2018-03-06 15:13:19 +01:00
ThomasV
c750ec153b new kivy gui 2018-03-06 14:58:00 +01:00
ThomasV
2b5117ab3d kivy: fix tx dialog message 2018-03-05 09:37:25 +01:00
ThomasV
c9b0840c78 kivy: minor fixes related to exchange rates 2018-03-04 23:58:38 +01:00
ThomasV
c3ff6040d2
Merge pull request #4008 from SomberNight/network_constants_refactor
refactor network constants
2018-03-04 23:13:50 +01:00
SomberNight
81b6d65764 refactor network constants 2018-03-04 22:10:59 +01:00
ThomasV
56c94153ff kivy: simplify fee dialog 2018-03-04 10:29:56 +01:00
ThomasV
2e594d2d7a kivy: simplify fee dialog 2018-03-03 14:58:55 +01:00
ThomasV
721dc8cdb9 kivy: larger history icons 2018-03-03 12:18:01 +01:00
ThomasV
1526768cd6 kivy: simplify history screen, display either fiat or btc 2018-03-03 11:32:38 +01:00
ThomasV
f863e7c7a8 follow-up previous commit 2018-03-03 10:36:56 +01:00
ThomasV
1e6d522137 kivy: more usable amount dialog 2018-03-03 10:08:51 +01:00
ThomasV
f93c3d79d7 fix #3740 2018-03-02 19:33:33 +01:00
ThomasV
d5effe48d0 kivy: do not show balance in every tab. fixes #3350 2018-03-02 19:16:08 +01:00
ThomasV
b2c7d2d2cc kivy: do not cache fee dialog 2018-03-02 10:31:00 +01:00
ThomasV
4321950f63 kivy: update fee dialog on new fee 2018-03-02 09:46:10 +01:00
ThomasV
fb761b7c12 request fee historgam every minute. show fee in the send tab of kivy gui 2018-03-01 18:28:54 +01:00
ThomasV
e82838ecbb fix #3991 2018-03-01 14:45:38 +01:00
ThomasV
2303f7b540 use python 3.6 to build APK 2018-03-01 12:50:48 +01:00
ThomasV
324da97297 Provide command-line instructions to install SDKs in Kivy/buildozer 2018-03-01 12:48:18 +01:00
SomberNight
a0023791e5 fix kivy -- virtual keyboard for seed input: chars were not getting enabled
kivy master broke this in kivy/kivy#5537
2018-03-01 04:32:34 +01:00
ThomasV
31edc419fa improve get_tx_status 2018-02-27 15:13:44 +01:00
ThomasV
24054ac399
Merge pull request #3943 from SomberNight/fee_cleanup
clean up fees a bit
2018-02-23 10:11:20 +01:00
SomberNight
1f1844ac13 kivy readme: manual download of crystax 2018-02-22 13:08:48 +01:00
SomberNight
1804800999 fix #3941
follow-up d971a75ef8
2018-02-21 16:08:32 +01:00
ThomasV
d971a75ef8 fix #3941 2018-02-21 15:28:00 +01:00