Skip to content
Snippets Groups Projects
Commit da5068c1 authored by James Calfee's avatar James Calfee Committed by Valentine Zavgorodnev
Browse files

Validate all transfer amounts to at most 3 decimal places. (#466)

* Warning cleanup

* Validate all transfer amounts to at most 3 decimal places. close #461
parent 507de6f4
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ import {transferTips} from 'app/utils/Tips'
import {powerTip, powerTip2, powerTip3} from 'app/utils/Tips'
import {browserTests} from 'shared/ecc/test/BrowserTests'
import {validate_account_name} from 'app/utils/ChainValidation';
import {countDecimals} from 'app/utils/ParsersAndFormatters'
/** Warning .. This is used for Power UP too. */
class TransferForm extends Component {
......@@ -76,6 +77,7 @@ class TransferForm extends Component {
! values.amount ? 'Required' :
! /^[0-9]*\.?[0-9]*/.test(values.amount) ? 'Amount is in the form 99999.999' :
insufficientFunds(values.asset, values.amount) ? 'Insufficient funds' :
countDecimals(values.amount) > 3 ? 'Use only 3 digits of precison' :
null,
asset:
props.toVesting ? null :
......
......@@ -55,3 +55,10 @@ export const repLog10 = rep2 => {
out = parseInt(out)
return out
}
export function countDecimals(amount) {
if(amount == null) return amount
amount = String(amount).match(/[\d\.]+/g).join('') // just dots and digits
const parts = amount.split('.')
return parts.length > 2 ? undefined : parts.length === 1 ? 0 : parts[1].length
}
\ No newline at end of file
......@@ -2,35 +2,35 @@ import assert from "assert"
/**
Convert 12.34 with a precision of 3 into 12340
@arg {number|string} number - Use strings for large numbers. This may contain one decimal but no sign
@arg {number} precision - number of implied decimal places (usually causes right zero padding)
@return {string} -
*/
export function toImpliedDecimal(number, precision) {
if(typeof number === "number") {
assert(number <= 9007199254740991, "overflow")
number = ""+number;
} else
if( number.toString )
number = number.toString()
assert(typeof number === "string", "number should be an actual number or string: " + (typeof number))
number = number.trim()
assert(/^[0-9]*\.?[0-9]*$/.test(number), "Invalid decimal number " + number)
let [ whole = "", decimal = ""] = number.split(".")
let padding = precision - decimal.length
assert(padding >= 0, "Too many decimal digits in " + number + " to create an implied decimal of " + precision)
for(let i = 0; i < padding; i++)
decimal += "0"
while(whole.charAt(0) === "0")
whole = whole.substring(1)
return whole + decimal
}
......@@ -41,13 +41,13 @@ export function fromImpliedDecimal(number, precision) {
} else
if( number.toString )
number = number.toString()
while(number.length < precision + 1)// 0.123
number = "0" + number
// 44000 => 44.000
let dec_string = number.substring(number.length - precision)
return number.substring(0, number.length - precision) +
(dec_string ? "." + dec_string : "")
}
\ No newline at end of file
}
......@@ -2,18 +2,15 @@
// Low-level types that make up operations
var ByteBuffer = require('bytebuffer');
var Serializer = require('./serializer');
var v = require('./validation');
var ObjectId = require('./object_id')
var fp = require('./fast_parser');
var chain_types = require('./ChainTypes')
var Long = ByteBuffer.Long
const v = require('./validation');
const ObjectId = require('./object_id')
const fp = require('./fast_parser');
const chain_types = require('./ChainTypes')
import { PublicKey, Address, ecc_config } from "../../ecc"
import { toImpliedDecimal, fromImpliedDecimal } from "./number_utils"
import { fromImpliedDecimal } from "./number_utils"
var Types = {}
const Types = {}
module.exports = Types
const HEX_DUMP = process.env.npm_config__graphene_serializer_hex_dump
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment