forked from TrueCloudLab/frostfs-sdk-go
4c779423f5
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
16 lines
283 B
Go
16 lines
283 B
Go
package accountingtest
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"github.com/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
|
|
}
|