mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-23 21:55:48 +00:00
make code uglify-compatible - do not use Function.name
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user