Method: Ethereum::Client#int_to_hex

Defined in:
lib/elchapo/ethereum/client.rb

#int_to_hex(p) ⇒ Object



37
38
39
# File 'lib/elchapo/ethereum/client.rb', line 37

def int_to_hex(p)
  p.is_a?(Integer) ? "0x#{p.to_s(16)}" : p
end