Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-14 | Remove unused TransactionError constants | MarcoFalke | |
2019-02-11 | Switch away from exceptions in refactored tx code | Glenn Willen | |
After refactoring general-purpose PSBT and transaction code out of RPC code, for use in the GUI, it's no longer appropriate to throw exceptions. Instead we now return bools for success, and take an output parameter for an error object. We still use JSONRPCError() for the error objects, since only RPC callers actually care about the error codes. | |||
2019-02-11 | Move PSBT definitions and code to separate files | Glenn Willen | |
Move non-wallet PSBT code to src/psbt.{h,cpp}, and PSBT wallet code to src/wallet/psbtwallet.{h,cpp}. This commit contains only code movement (and adjustments to includes and Makefile.am.) |