Skip to content

Commit

Permalink
ref: fix weird import
Browse files Browse the repository at this point in the history
  • Loading branch information
BjrInt authored Oct 12, 2023
1 parent c27c0dc commit 11f7b60
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/messages/store/publish.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import * as base from "../../accounts/account";
import { Account } from "../../accounts/account";
import { BaseMessage, ItemType, MessageType, StoreContent, StoreMessage } from "../types";
import { PushFileToStorageEngine, PutContentToStorageEngine } from "../create/publish";
Expand Down Expand Up @@ -28,7 +27,7 @@ import { blobToBuffer, calculateSHA256Hash } from "./utils";
*/
type StorePublishConfiguration = {
channel: string;
account: base.Account;
account: Account;
fileObject?: Buffer | Blob;
fileHash?: string;
storageEngine?: ItemType.ipfs | ItemType.storage;
Expand Down Expand Up @@ -99,7 +98,7 @@ async function getHash(
}

async function createAndSendStoreMessage(
account: base.Account,
account: Account,
channel: string,
myHash: string,
storageEngine: ItemType,
Expand Down

0 comments on commit 11f7b60

Please sign in to comment.