Skip to content

Commit 7cd3b61

Browse files
tianzedavidjgriffiths
authored andcommitted
chore: fix some typos
Signed-off-by: tianzedavid <[email protected]>
1 parent 2648de7 commit 7cd3b61

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

contrib/Dockerfile_bookworm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Dockerfile for wally builds on Debain bookworm (stable).
2+
# Dockerfile for wally builds on Debian bookworm (stable).
33
# build from this directory with e.g:
44
# docker buildx build --platform linux/arm64,linux/amd64 -f Dockerfile_bullseye -t greenaddress/wallycore:bookworm .
55
#

contrib/Dockerfile_bullseye

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Dockerfile for wally builds on Debain bullseye (oldstable).
2+
# Dockerfile for wally builds on Debian bullseye (oldstable).
33
# build from this directory with e.g:
44
# DOCKER_BUILDKIT=1 docker build . -t greenaddress/wallycore -f Dockerfile_bullseye
55
# and for linux/arm64:

include/wally_core.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ WALLY_CORE_API char *wally_strdup(const char *str);
111111
* Fetch the wally internal secp256k1 context object.
112112
*
113113
* By default, a single global context is created on demand. This behaviour
114-
* can be overriden by providing a custom context fetching function when
114+
* can be overridden by providing a custom context fetching function when
115115
* calling `wally_set_operations`.
116116
*/
117117
WALLY_CORE_API struct secp256k1_context_struct *wally_get_secp_context(void);
@@ -163,7 +163,7 @@ WALLY_CORE_API int wally_free_string(
163163
*
164164
* The caller should call this function before using any functions that rely on
165165
* libsecp256k1 (i.e. Anything using public/private keys). If the caller
166-
* has overriden the library's default libsecp context fetching using
166+
* has overridden the library's default libsecp context fetching using
167167
* `wally_set_operations`, then it may be necessary to call this function
168168
* before calling wally functions in each thread created by the caller.
169169
*

include/wally_psbt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ struct wally_psbt_output {
107107
size_t script_len;
108108
struct wally_map psbt_fields; /* Binary fields keyed by PSBT keytype */
109109
/* Map of 1-based position to taproot leaf script, in depth first order.
110-
* TODO: replace this with actual TR representaion when TR implemented */
110+
* TODO: replace this with actual TR representation when TR implemented */
111111
struct wally_map taproot_tree;
112112
/* Hashes and paths for taproot bip32 derivation path */
113113
struct wally_map taproot_leaf_hashes;

include/wally_transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ WALLY_CORE_API int wally_tx_get_btc_taproot_signature_hash(
840840
*| flags includes `WALLY_TX_FLAG_USE_WITNESS`, pass 0 otherwise.
841841
* :param sighash: ``WALLY_SIGHASH_`` flags specifying the type of signature desired.
842842
* :param tx_sighash: The 32bit sighash value to include in the preimage to hash.
843-
*| This must be given in host CPU endianess; For normal Bitcoin signing
843+
*| This must be given in host CPU endianness; For normal Bitcoin signing
844844
*| the value of ``sighash`` should be given.
845845
* :param flags: `WALLY_TX_FLAG_USE_WITNESS` to generate a BIP 143 signature, or 0
846846
*| to generate a pre-segwit Bitcoin signature.

0 commit comments

Comments
 (0)