Skip to content
This repository has been archived by the owner on Jun 7, 2019. It is now read-only.

Commit

Permalink
Merge pull request #383 from LiskHQ/366-refactor_transaction_bytes
Browse files Browse the repository at this point in the history
Refactor transaction bytes - Closes #366
  • Loading branch information
Tobias Schwarz committed Sep 26, 2017
2 parents 99c3df9 + f91106b commit f79c76c
Show file tree
Hide file tree
Showing 8 changed files with 782 additions and 322 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -24,7 +24,6 @@
"babel-polyfill": "=6.23.0",
"bitcore-mnemonic": "LiskHQ/bitcore-mnemonic#v1.2.5",
"browserify-bignum": "=1.3.0-2",
"bytebuffer": "=5.0.1",
"ed2curve": "=0.2.1",
"js-nacl": "LiskHQ/js-nacl#6dc1417",
"popsicle": "=9.1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/convert.js
Expand Up @@ -15,7 +15,7 @@
import bignum from 'browserify-bignum';
import ed2curve from 'ed2curve';
import { getSha256Hash } from './hash';
import { getTransactionBytes } from '../transactions/transactionBytes';
import getTransactionBytes from '../transactions/transactionBytes';

/**
* @method bufferToHex
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/hash.js
Expand Up @@ -12,7 +12,7 @@
* Removal or modification of this copyright notice is prohibited.
*
*/
import { getTransactionBytes } from './../transactions/transactionBytes';
import getTransactionBytes from './../transactions/transactionBytes';

/**
* @method getSha256Hash
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/sign.js
Expand Up @@ -13,7 +13,7 @@
*
*/
import crypto from 'crypto';
import { getTransactionBytes } from '../transactions/transactionBytes';
import getTransactionBytes from '../transactions/transactionBytes';
import {
hexToBuffer,
bufferToHex,
Expand Down

0 comments on commit f79c76c

Please sign in to comment.