module Berycoin::Mining

Public Class Methods

getblocktemplate() click to toggle source
# File lib/berycoin/gem.rb, line 159
def Mining.getblocktemplate
  H.getblocktemplate
end
getmininginfo() click to toggle source
# File lib/berycoin/gem.rb, line 162
def Mining.getmininginfo
  H.getmininginfo
end
getnetworkhashps() click to toggle source
# File lib/berycoin/gem.rb, line 165
def Mining.getnetworkhashps
  H.getnetworkhashps
end
getstakinginfo() click to toggle source
# File lib/berycoin/gem.rb, line 171
def Mining.getstakinginfo
  H.getstakinginfo
end
getsubsidy(*nTarget) click to toggle source
# File lib/berycoin/gem.rb, line 174
def Mining.getsubsidy(*nTarget)
  H.getsubsidy nTarget
end
prioritisetransaction(*opt) click to toggle source
# File lib/berycoin/gem.rb, line 168
def Mining.prioritisetransaction(*opt)
  H.prioritisetransaction (opt)
end
submitblock(hexdata) click to toggle source
# File lib/berycoin/gem.rb, line 177
def Mining.submitblock(hexdata)
  H.submitblock(hexdata)
end