rpc: add gettransaction endpoint to walletrpc sub-server

This commit is contained in:
ErikEk
2023-01-18 13:29:09 +08:00
parent c32edbd732
commit f0bc6d804c
14 changed files with 1130 additions and 745 deletions

View File

@@ -233,6 +233,13 @@ func (w *WalletController) PublishTransaction(tx *wire.MsgTx, _ string) error {
return nil
}
// GetTransactionDetails currently does nothing.
func (w *WalletController) GetTransactionDetails(
txHash *chainhash.Hash) (*lnwallet.TransactionDetail, error) {
return nil, nil
}
// LabelTransaction currently does nothing.
func (w *WalletController) LabelTransaction(chainhash.Hash, string,
bool) error {