File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -129,13 +129,13 @@ def test_message_error_conditions() -> None:
129
129
mode_integer = uint8 (0b111 ),
130
130
).necessary_args
131
131
132
- with pytest .raises (ValueError , match = "Must specify either mode_integer or both sender and reciever " ):
132
+ with pytest .raises (ValueError , match = "Must specify either mode_integer or both sender and receiver " ):
133
133
SendMessage (
134
134
msg = b"foo" ,
135
135
sender = MessageParticipant (coin_id_committed = test_coin .name ()),
136
136
)
137
137
138
- with pytest .raises (ValueError , match = "Must specify either mode_integer or both sender and reciever " ):
138
+ with pytest .raises (ValueError , match = "Must specify either mode_integer or both sender and receiver " ):
139
139
SendMessage (
140
140
msg = b"foo" ,
141
141
receiver = MessageParticipant (coin_id_committed = test_coin .name ()),
Original file line number Diff line number Diff line change @@ -564,7 +564,7 @@ def _opcode(self) -> ConditionOpcode:
564
564
565
565
def __post_init__ (self ) -> None :
566
566
if self .mode_integer is None and (self .sender is None or self .receiver is None ):
567
- raise ValueError ("Must specify either mode_integer or both sender and reciever " )
567
+ raise ValueError ("Must specify either mode_integer or both sender and receiver " )
568
568
569
569
if self .mode_integer is not None and self .sender is not None :
570
570
assert self .mode_integer >> 3 == self .sender .mode , (
Original file line number Diff line number Diff line change @@ -1162,10 +1162,10 @@ async def mint_from_did(
1162
1162
- The launcher coins are then spent along with the created eve spend
1163
1163
and an xch spend that funds the transactions and pays fees.
1164
1164
- There is also an option to pass in a list of target puzzlehashes. If
1165
- provided this method will create an additional transaction transfering
1165
+ provided this method will create an additional transaction transferring
1166
1166
the minted NFTs to the row-matched target.
1167
1167
:param metadata_list: A list of dicts containing the metadata for each NFT to be minted
1168
- :param target_list: [Optional] a list of targets for transfering minted NFTs (aka airdrop)
1168
+ :param target_list: [Optional] a list of targets for transferring minted NFTs (aka airdrop)
1169
1169
:param mint_number_start: [Optional] The starting point for mint number used in intermediate launcher
1170
1170
puzzle. Default: 1
1171
1171
:param mint_total: [Optional] The total number of NFTs being minted
@@ -1438,7 +1438,7 @@ async def mint_from_xch(
1438
1438
"""
1439
1439
Minting NFTs from a single XCH spend using intermediate launcher puzzle
1440
1440
:param metadata_list: A list of dicts containing the metadata for each NFT to be minted
1441
- :param target_list: [Optional] a list of targets for transfering minted NFTs (aka airdrop)
1441
+ :param target_list: [Optional] a list of targets for transferring minted NFTs (aka airdrop)
1442
1442
:param mint_number_start: [Optional] The starting point for mint number used in intermediate launcher
1443
1443
puzzle. Default: 1
1444
1444
:param mint_total: [Optional] The total number of NFTs being minted
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ async def get_coins_of_interest(
122
122
) -> set [bytes32 ]:
123
123
"""
124
124
Returns list of coins we want to check if they are included in filter,
125
- These will include coins that belong to us and coins that that on other side of treade
125
+ These will include coins that belong to us and coins that on other side of trade
126
126
"""
127
127
coin_ids = await self .trade_store .get_coin_ids_of_interest_with_trade_statuses (
128
128
trade_statuses = [TradeStatus .PENDING_ACCEPT , TradeStatus .PENDING_CONFIRM , TradeStatus .PENDING_CANCEL ]
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def to_standard(self) -> CreateMorePuzzleHashesResult:
46
46
class CreateMorePuzzleHashesResult :
47
47
derivation_paths : list [DerivationRecord ]
48
48
mark_existing_as_used : bool
49
- unused : int # The first unusued puzzle hash
49
+ unused : int # The first unused puzzle hash
50
50
new_unhardened_keys : bool
51
51
last_index : int # The index we derived up to
52
52
You can’t perform that action at this time.
0 commit comments