Alex Vanin
94476f9055
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
16 lines
289 B
Go
16 lines
289 B
Go
package accountingtest
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/accounting"
|
|
)
|
|
|
|
// Decimal returns random accounting.Decimal.
|
|
func Decimal() *accounting.Decimal {
|
|
var d accounting.Decimal
|
|
d.SetValue(rand.Int63())
|
|
d.SetPrecision(rand.Uint32())
|
|
|
|
return &d
|
|
}
|