a0c1d5a add upgrade notes (undeath)
8885e61 revert bad assert fix (undeath)
a929cf3 make log output human-readable again (undeath)
aa2c1d9 fix some bugs in wallet_utils (undeath)
9dd1dc7 fix wallet sync in fast mode (undeath)
98f41f7 make SimpleLruCache an actual LRU cache (undeath)
703ae04 remove wallet.sign() (undeath)
34f8600 fix wallet syncing (undeath)
747c227 fix some max_mixdepth off-by-one errors (undeath)
39e4276 change default wallet name (undeath)
8b9abef add is_segwit_mode() utility function (undeath)
8ca6cfc make sure new addresses always get imported (undeath)
914a40e adopt wallet_utils for new wallet (undeath)
cdbb345 remove uses of internal wallet data from electruminterface. NOTE: changes untested, probably breaks electruminterface somehow (undeath)
1f30967 adopt blockchaininterface for new wallet (undeath)
705d41d remove usages of wallet.unspent (undeath)
89b5cd4 add new wallet classes to existing tests (undeath)
3cf9926 remove references to old wallet classes (undeath)
2a0757c remove BitcoinCoreWallet (undeath)
6aaabb2 change yieldgenerator using new wallet implementation, start porting wallet_utils (undeath)
995c123 replace old wallet implementation with new one (undeath)
474a77d add setup.py dependencies (undeath)
ca57a14 add new wallet implementation (undeath)
6cfb841 cache joinmarket deps on docker (fivepiece)
c99a209 get bitcoind from ppa only on linux host (fivepiece)
9005ee1 cache joinmarket deps on travis (fivepiece)
974b5ae add cache support to install.sh (fivepiece)
If a user doing sendpayment decided to reject the offered fees,
before this commit this resulted in a crash because the call
to Taker.on_finished_callback was passed with fromtx=True for
a single line schedule, which attempts to restart. fromtx should
have been set to False when it is the last item in the schedule
(in this case, both first and last). This incorrect argument
existed before restart-with-subset but was then harmless, now
it attempts to recover with no Taker.nonrespondants and crashes.
Fix is simply to provide the right second argument (False) to
the function call.
b741b24 Allow sendpayment to restart with honest makers If N makers are chosen and M fail to respond with sig, this alteration to taker code allows restart of entire transaction with that specific subset of makers (N-M) that originally responded honestly. (Adam Gibson)
If N makers are chosen and M fail to respond with sig,
this alteration to taker code allows restart of
entire transaction with that specific subset of makers (N-M)
that originally responded honestly.