48150852f3
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
16 lines
278 B
Go
16 lines
278 B
Go
package accountingtest
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"github.com/nspcc-dev/neofs-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
|
|
}
|