Skip to content

Commit

Permalink
I feel dumb. typo fix in signContract amino converter
Browse files Browse the repository at this point in the history
  • Loading branch information
karnthis committed Jan 17, 2024
1 parent 356db48 commit 6b14e3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jackallabs/jackal.js-protos",
"version": "1.4.0",
"version": "1.4.1",
"description": "Package of all protos used by Jackal.js",
"keywords": [
"jackal",
Expand Down
2 changes: 1 addition & 1 deletion src/snackages/tx/custom/amino/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function createStorageAminoConverters(): AminoConverters {
fromAmino: (value: any): MsgSignContract => {
return {
creator: value.creator,
cid: value.creator,
cid: value.cid,
payOnce: value.pay_once || false
}
}
Expand Down

0 comments on commit 6b14e3b

Please sign in to comment.