diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-09-23 20:25:10 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2019-11-13 18:54:40 +0100 |
commit | 39465d545d521e66bb3accfa788aa94bffaf47eb (patch) | |
tree | 015361db70b9270b5007d9a43f148052664ec9b0 /src/interfaces/wallet.h | |
parent | 848f88920853724511387ca0b7ef652fa14ced71 (diff) |
[wallet] add fillPSBT to interface
Diffstat (limited to 'src/interfaces/wallet.h')
-rw-r--r-- | src/interfaces/wallet.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index a96b93b4c3..93d3970585 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -14,6 +14,7 @@ #include <functional> #include <map> #include <memory> +#include <psbt.h> #include <stdint.h> #include <string> #include <tuple> @@ -194,6 +195,13 @@ public: bool& in_mempool, int& num_blocks) = 0; + //! Fill PSBT. + virtual TransactionError fillPSBT(PartiallySignedTransaction& psbtx, + bool& complete, + int sighash_type = 1 /* SIGHASH_ALL */, + bool sign = true, + bool bip32derivs = false) = 0; + //! Get balances. virtual WalletBalances getBalances() = 0; |