Skip to content

Commit

Permalink
litecoin refs
Browse files Browse the repository at this point in the history
  • Loading branch information
losh11 committed Feb 23, 2022
1 parent d70bff5 commit c37dc91
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/ltcsuite/ltcwallet.png?branch=master)](https://travis-ci.org/ltcsuite/ltcwallet)
[![Build status](https://ci.appveyor.com/api/projects/status/88nxvckdj8upqr36/branch/master?svg=true)](https://ci.appveyor.com/project/jrick/ltcwallet/branch/master)

ltcwallet is a daemon handling bitcoin wallet functionality for a
ltcwallet is a daemon handling litecoin wallet functionality for a
single user. It acts as both an RPC client to ltcd and an RPC server
for wallet clients and legacy RPC applications.

Expand All @@ -30,12 +30,12 @@ ltcwallet is not an SPV client and requires connecting to a local or
remote ltcd instance for asynchronous blockchain queries and
notifications over websockets. Full ltcd installation instructions
can be found [here](https://github.com/ltcsuite/ltcd). An alternative
SPV mode that is compatible with ltcd and Bitcoin Core is planned for
SPV mode that is compatible with ltcd and Litecoin Core is planned for
a future release.

Wallet clients can use one of two RPC servers:

1. A legacy JSON-RPC server mostly compatible with Bitcoin Core
1. A legacy JSON-RPC server mostly compatible with Litecoin Core

The JSON-RPC server exists to ease the migration of wallet applications
from Core, but complete compatibility is not guaranteed. Some portions of
Expand Down
2 changes: 1 addition & 1 deletion rpc/documentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ implementation:
- [Client usage](./clientusage.md)
- [Making API changes](./serverchanges.md)

A legacy RPC server based on the JSON-RPC API of Bitcoin Core's wallet is also
A legacy RPC server based on the JSON-RPC API of Litecoin Core's wallet is also
available, but documenting its usage is out of scope for these documents.
8 changes: 4 additions & 4 deletions rpc/documentation/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ rules of Semantic Versioning (SemVer) 2.0.0.
## `LoaderService`

The `LoaderService` service provides the caller with functions related to the
management of the wallet and its connection to the Bitcoin network. It has no
management of the wallet and its connection to the Litecoin network. It has no
dependencies and is always running.

**Methods:**
Expand Down Expand Up @@ -213,14 +213,14 @@ ___

The `StartConsensusRpc` method is used to provide clients the ability to dynamically
start the btcd RPC client. This RPC client is used for wallet syncing and
publishing transactions to the Bitcoin network.
publishing transactions to the Litecoin network.

**Request:** `StartConsensusRpcRequest`

- `string network_address`: The host/IP and optional port of the RPC server to
connect to. IP addresses may be IPv4 or IPv6. If the port is missing, a
default port is chosen corresponding to the default btcd RPC port of the
active Bitcoin network.
active Litecoin network.

- `string username`: The RPC username required to authenticate to the RPC
server.
Expand Down Expand Up @@ -769,7 +769,7 @@ ___
#### `PublishTransaction`

The `PublishTransaction` method publishes a signed, serialized transaction to
the Bitcoin network. If the transaction spends any of the wallet's unspent
the Litecoin network. If the transaction spends any of the wallet's unspent
outputs or creates a new output controlled by the wallet, it is saved by the
wallet and republished later if it or a double spend are not mined.

Expand Down
Loading

0 comments on commit c37dc91

Please sign in to comment.