fix: unable to createSource with JWKInterface wallet #376

This commit is contained in:
ppe
2023-03-23 12:03:01 +01:00
committed by just_ppe
parent dbe52e82cd
commit 34d2e61b58
2 changed files with 4 additions and 3 deletions

View File

@@ -118,9 +118,10 @@ export class Warp {
async createSource(
sourceData: SourceData,
wallet: ArWallet | CustomSignature | BundlerSigner
wallet: ArWallet | CustomSignature | BundlerSigner,
disableBundling: boolean = false
): Promise<Transaction | DataItem> {
return await this.createContract.createSource(sourceData, wallet);
return await this.createContract.createSource(sourceData, wallet, disableBundling);
}
async saveSource(src: Transaction | DataItem, disableBundling?: boolean): Promise<string> {