| 477 | { |
| 478 | public: |
| 479 | explicit TransactionOutput(const ScriptPubkey& script_pubkey, int64_t amount) |
| 480 | : Handle{btck_transaction_output_create(script_pubkey.get(), amount)} {} |
| 481 | |
| 482 | TransactionOutput(const TransactionOutputView& view) |
| 483 | : Handle(view) {} |
nothing calls this directly
no test coverage detected