From 1a463eb056e6aaa566c94a4f16de7094891abd55 Mon Sep 17 00:00:00 2001 From: ValarDragon Date: Sat, 20 Oct 2018 18:02:17 -0700 Subject: [PATCH] make more clear --- types/decimal.go | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/types/decimal.go b/types/decimal.go index b621acd51..c981f6dca 100644 --- a/types/decimal.go +++ b/types/decimal.go @@ -253,25 +253,26 @@ func (d Dec) String() string { return "" } var bzWDec []byte + inputSize := len(bz) // TODO: Remove trailing zeros // case 1, purely decimal - if len(bz) <= 10 { + if inputSize <= 10 { bzWDec = make([]byte, 12) // 0. prefix bzWDec[0] = byte('0') bzWDec[1] = byte('.') // set relevant digits to 0 - for i := 0; i < 10-len(bz); i++ { + for i := 0; i < 10-inputSize; i++ { bzWDec[i+2] = byte('0') } // set last few digits - copy(bzWDec[2+(10-len(bz)):], bz) + copy(bzWDec[2+(10-inputSize):], bz) } else { - // len(bz) + 1 to account for the decimal point that is being added - bzWDec = make([]byte, len(bz)+1) - copy(bzWDec, bz[:len(bz)-10]) - bzWDec[len(bz)-10] = byte('.') - copy(bzWDec[len(bz)-9:], bz[len(bz)-10:]) + // inputSize + 1 to account for the decimal point that is being added + bzWDec = make([]byte, inputSize+1) + copy(bzWDec, bz[:inputSize-10]) + bzWDec[inputSize-10] = byte('.') + copy(bzWDec[inputSize-9:], bz[inputSize-10:]) } return string(bzWDec) }