Uint64ToBigFloat() converts a uint64 to a big.Float
(u uint64)
| 644 | |
| 645 | // Uint64ToBigFloat() converts a uint64 to a big.Float |
| 646 | func Uint64ToBigFloat(u uint64) *big.Float { |
| 647 | return new(big.Float).SetUint64(u) |
| 648 | } |
| 649 | |
| 650 | // HexBytes represents a byte slice that can be marshaled and unmarshalled as hex strings |
| 651 | type HexBytes []byte |
no test coverage detected