1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-11-22 17:50:09 +01:00

Adjust float interpretation comment

This commit is contained in:
tim 2017-06-21 16:23:53 +02:00
parent 0da90e825f
commit 1aa430a15c

View File

@ -2,8 +2,8 @@ import test from 'ava'
import { Transaction, Ed25519Keypair } from '../src'
// TODO: Find out if ava has something like conftest, if so put this there.
// NOTE: We cast `Math.random()` to a string, as sometimes Javascript simply
// yields a slightly different float during runtime, lol
// NOTE: It's safer to cast `Math.random()` to a string, to avoid differences
// in "float interpretation" between languages (e.g. JavaScript and Python)
export function asset() { return { message: `${Math.random()}` } }
export const metaData = { message: 'metaDataMessage' }