From f0093c0f1c46b300281ab8b4db2c4f755fd0d8f3 Mon Sep 17 00:00:00 2001 From: Jose Storopoli Date: Wed, 1 May 2024 17:56:11 -0300 Subject: [PATCH] fix(typo): examples/ecdsa-psbt.rs "Creater" is a typo, it should be "Creator" role. --- bitcoin/examples/ecdsa-psbt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/examples/ecdsa-psbt.rs b/bitcoin/examples/ecdsa-psbt.rs index 4de4cf663..428461a9a 100644 --- a/bitcoin/examples/ecdsa-psbt.rs +++ b/bitcoin/examples/ecdsa-psbt.rs @@ -171,7 +171,7 @@ impl WatchOnly { WatchOnly { account_0_xpub, input_xpub, master_fingerprint } } - /// Creates the PSBT, in BIP174 parlance this is the 'Creater'. + /// Creates the PSBT, in BIP174 parlance this is the 'Creator'. fn create_psbt(&self, secp: &Secp256k1) -> Result { let to_address = Address::from_str(RECEIVE_ADDRESS)?.require_network(Network::Regtest)?; let to_amount = Amount::from_str(OUTPUT_AMOUNT_BTC)?;