Class: Integer

Inherits:
Object
  • Object
show all
Defined in:
lib/bitcoin.rb

Instance Method Summary collapse

Instance Method Details

#itbObject



210
211
212
# File 'lib/bitcoin.rb', line 210

def itb
  to_even_length_hex.htb
end

#to_bits(length = nil) ⇒ Object

convert bit string



215
216
217
218
219
220
221
# File 'lib/bitcoin.rb', line 215

def to_bits(length = nil )
  if length
    to_s(2).rjust(length, '0')
  else
    to_s(2)
  end
end

#to_even_length_hexObject



205
206
207
208
# File 'lib/bitcoin.rb', line 205

def to_even_length_hex
  hex = to_s(16)
  hex.rjust((hex.length / 2.0).ceil * 2, '0')
end