make code uglify-compatible - do not use Function.name

This commit is contained in:
Ivan Tivonenko
2016-02-04 05:48:19 +02:00
parent a0776a77b6
commit 76e18fd30e
4 changed files with 13 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ const {
const FULL_CANONICAL_SIGNATURE = 0x80000000;
const toHex = v => bytesToHex(v);
const getSigner = (o) => AccountID.from(o.Signer.Account);
const getSigner = o => AccountID.from(o.Signer.Account);
const signerComparator = (a, b) => getSigner(a).compareTo(getSigner(b));
function setCanonicalSignatureFlag(tx_json) {