Class: Integer

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

Instance Method Summary collapse

Instance Method Details

#itbObject



203
204
205
# File 'lib/bitcoin.rb', line 203

def itb
  to_even_length_hex.htb
end

#to_bits(length = nil) ⇒ Object

convert bit string



208
209
210
211
212
213
214
# File 'lib/bitcoin.rb', line 208

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

#to_even_length_hexObject



198
199
200
201
# File 'lib/bitcoin.rb', line 198

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