Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Fix #1701 (#1750)
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga authored and frozeman committed Mar 17, 2017
1 parent 220e828 commit bfc2f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ethereumNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class EthereumNode extends EventEmitter {
// START MAINNET
else {
args = (nodeType === 'geth')
? ['--fast', '--cache', '1024']
? ['--fast', '--cache', ((process.arch === 'x64') ? '1024' : '512')]
: ['--unsafe-transactions'];
}

Expand Down

0 comments on commit bfc2f8b

Please sign in to comment.