Method: EvmClient::Formatter#from_bool
- Defined in:
- lib/evm_client/formatter.rb
#from_bool(boolval) ⇒ Object
39 40 41 42 |
# File 'lib/evm_client/formatter.rb', line 39 def from_bool(boolval) return nil if boolval.nil? boolval ? "1" : "0" end |