File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/relay/src/lib/clients Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -659,7 +659,7 @@ export class SDKClient {
659659 throw predefined . HBAR_RATE_LIMIT_EXCEEDED ;
660660 }
661661
662- const fileCreateTx = await new FileCreateTransaction ( )
662+ fileCreateTx = await new FileCreateTransaction ( )
663663 . setContents ( hexedCallData . substring ( 0 , this . fileAppendChunkSize ) )
664664 . setKeys ( client . operatorPublicKey ? [ client . operatorPublicKey ] : [ ] ) ;
665665
@@ -682,7 +682,7 @@ export class SDKClient {
682682 ) ;
683683
684684 if ( fileId && callData . length > this . fileAppendChunkSize ) {
685- const fileAppendTx = await new FileAppendTransaction ( )
685+ fileAppendTx = await new FileAppendTransaction ( )
686686 . setFileId ( fileId )
687687 . setContents ( hexedCallData . substring ( this . fileAppendChunkSize , hexedCallData . length ) )
688688 . setChunkSize ( this . fileAppendChunkSize )
You can’t perform that action at this time.
0 commit comments