Skip to content

Commit

Permalink
Merge pull request #14 from starkbank/fix/transaction-format
Browse files Browse the repository at this point in the history
Fix transaction amunt formatting
  • Loading branch information
daltonfm-stark authored Sep 24, 2020
2 parents 9fe7b6a + dcb66a9 commit 5a56707
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src.vba/SendInternalTransferForm.frm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ End Sub
Private Sub ConfirmButton_Click()
'On Error Resume Next
Dim myFile As String: myFile = PathBox.Value
Dim amount As Long: amount = getAmountLong(Utils.clearNonNumeric(AmountBox.Value))
Dim amount As Long: amount = CLng(Utils.clearNonNumeric(AmountBox.Value))
Dim receiverId As String: receiverId = WorkspaceBox.Value
Dim externalId As String: externalId = ExternalIdBox.Value
Dim description As String: description = DescriptionBox.Value
Expand Down
Binary file modified starkbank-sdk.xlsm
Binary file not shown.

0 comments on commit 5a56707

Please sign in to comment.