Skip to content
This repository was archived by the owner on Jul 21, 2020. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 788 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 788 Bytes

ruby-devp2p

MIT License travis build status

A ruby implementation of Ethereum's DEVp2p framework.

Fiber Stack Size

DEVp2p is build on Celluloid, which uses fibers to schedule tasks. Ruby's default limit on fiber stack size is quite small, which need to be increased by setting environment variables:

export RUBY_FIBER_VM_STACK_SIZE=104857600 # 100MB
export RUBY_FIBER_MACHINE_STACK_SIZE=1048576000

Resources