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

Fix #1701 #1750

Merged
merged 1 commit into from Mar 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/ethereumNode.js
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