Skip to content

Commit fce06fa

Browse files
committed
fix: change module and name for receiving
1 parent 933c38c commit fce06fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Sources/SuiKit/Types/Structs/Builders/Transactions/TransactionBlock/TransactionBlock.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -757,8 +757,8 @@ public class TransactionBlock {
757757

758758
let isReceiving = try
759759
objectToResolve.normalizedType?.extractStructTag()?.address.hex() == Inputs.normalizeSuiAddress(value: "0x2") &&
760-
objectToResolve.normalizedType?.extractStructTag()?.name == "transfer" &&
761-
objectToResolve.normalizedType?.extractStructTag()?.module == "Receiving"
760+
objectToResolve.normalizedType?.extractStructTag()?.module == "transfer" &&
761+
objectToResolve.normalizedType?.extractStructTag()?.name == "Receiving"
762762

763763
if(isReceiving) {
764764
objectToResolve.input.value = .callArg(

0 commit comments

Comments
 (0)