Skip to content

Commit 4580280

Browse files
authored
fix: Executor *transfer function should yield instead of return (#675)
Signed-off-by: Emre Bogazliyanlioglu <[email protected]>
1 parent f106797 commit 4580280

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sui/ts/src/nttWithExecutor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class SuiNttWithExecutor<N extends Network, C extends SuiChains>
111111
"NTT Transfer with Executor"
112112
);
113113

114-
return executorTx;
114+
yield executorTx;
115115
}
116116

117117
private async createSuiNttTransferWithExecutor(

0 commit comments

Comments
 (0)