Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
fix transfer sending
Browse files Browse the repository at this point in the history
  • Loading branch information
jk authored and jk committed Nov 10, 2020
1 parent f9fa2e2 commit 57ab603
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
Expand Up @@ -55,7 +55,7 @@
},
"homepage": "https://gitlab.rumblefishdev.com/holmes/zbay",
"@comment version": "To build new version for specific platform, just replace platform in version tag to one of following linux, mac, windows",
"version": "3.0.2-zbay-lite",
"version": "2.2.0-zbay-lite",
"description": "Distributed goods and bulletin board",
"main": "dist/main.js",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const formSchema = users => {
value
) {
return getBytesSize(value) <= MESSAGE_SIZE
}).required('Required')
})
},
['recipient', 'amountZec', 'amoundUsd', 'memo']
)
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/zbay/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export const createTransfer = (values) => {
sender: values.sender,
receiver: values.receiver,
createdAt: DateTime.utc().toSeconds(),
memo: memo || '',
memo: memo || 'TRASNFER',
spent: values.amountZec
}
}
Expand Down

0 comments on commit 57ab603

Please sign in to comment.