Skip to content

Commit

Permalink
Merge pull request #1371 from ardriveapp/PE-4645
Browse files Browse the repository at this point in the history
PE-4645: Unable to create Pins in both public and private drive
  • Loading branch information
matibat authored Sep 20, 2023
2 parents 791649d + 8b338ee commit c2a4153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/blocs/pin_file/pin_file_bloc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ class PinFileBloc extends Bloc<PinFileEvent, PinFileState> {
);
}

fileDataItem.sign(wallet);
await fileDataItem.sign(wallet);

await _turboUploadService.postDataItem(
dataItem: fileDataItem,
Expand All @@ -359,7 +359,7 @@ class PinFileBloc extends Bloc<PinFileEvent, PinFileState> {
);
}

fileDataItem.sign(wallet);
await fileDataItem.sign(wallet);

await _arweave.postTx(fileDataItem);
newFileEntity.txId = fileDataItem.id;
Expand Down

0 comments on commit c2a4153

Please sign in to comment.