Skip to content

Commit

Permalink
v1.4.22-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedziwiatr authored and Tadeuchi committed Oct 25, 2023
1 parent 98e3df4 commit 966939c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "warp-contracts",
"version": "1.4.22-beta.1",
"version": "1.4.22-beta.2",
"description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/integration/basic/pst.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ describe('Testing the Profit Sharing Token', () => {
});
});

describe("when loading data from Arweave", () => {
describe('when loading data from Arweave', () => {
it('should allow to safe fetch from external api', async () => {
const blockData = await arweave.blocks.getCurrent();

Expand Down
2 changes: 1 addition & 1 deletion src/legacy/smartweave-global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class SmartWeaveGlobal {
crypto: arweave.crypto
};
this.baseArweaveUrl = `${arweave.api.config.protocol}://${arweave.api.config.host}:${arweave.api.config.port}`;
this.safeArweaveGet = async function(query: string) {
this.safeArweaveGet = async function (query: string) {
return safeGet(`${this.baseArweaveUrl}${query}`);
};

Expand Down

0 comments on commit 966939c

Please sign in to comment.