Skip to content

Commit 465a4a7

Browse files
authored
Merge pull request #247 from Psychedelic/fix/sign-payload-param
Fix/sign payload param
2 parents 70ad923 + ffc5bdf commit 465a4a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"typescript": "^4.5"
5959
},
6060
"name": "@psychedelic/plug-controller",
61-
"version": "0.25.1",
61+
"version": "0.25.2",
6262
"description": "Internet Computer Plug wallet's controller",
6363
"main": "dist/index.js",
6464
"scripts": {

src/PlugWallet/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class PlugWallet {
111111
this.name = val;
112112
}
113113

114-
public async sign(payload: BinaryBlob): Promise<BinaryBlob> {
114+
public async sign({ payload } : { payload: BinaryBlob }): Promise<BinaryBlob> {
115115
return this.identity.sign(payload);
116116
}
117117

src/constants/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const PLUG_CONTROLLER_VERSION = "0.25.1";
1+
export const PLUG_CONTROLLER_VERSION = "0.25.2";

0 commit comments

Comments
 (0)