Add test service placeholders for fetchtransactions

This commit is contained in:
lash
2024-11-02 16:42:50 +00:00
parent 14bc11f4bd
commit 3a8a5f40ba
2 changed files with 9 additions and 0 deletions

View File

@@ -42,3 +42,7 @@ func (tas *TestAccountService) FetchVouchers(ctx context.Context, publicKey stri
},
}, nil
}
func (tas *TestAccountService) FetchTransactions(ctx context.Context, publicKey string) ([]dataserviceapi.Last10TxResponse, error) {
return []dataserviceapi.Last10TxResponse{}, nil
}