比特币核心RPC方法“sendfrom”不起作用

时间:2017-05-17 15:30:07

标签: ruby

比特币核心RPC方法“sendfrom”无法从我的控制器运行。我从我的控制器运行以下命令

bitcoin_cli = BitcoinCli.new  
response = bitcoin_cli.execute_function("sendfrom", "#{account.strip}", "#{address.strip}", "#{amount}")

这里是执行功能

class BitcoinCli   

  def initialize()

  end


  def execute_function(function_name, *params)  
    result = %x{/usr/local/bin/bitcoin-cli #{function_name} #{params.join(' ')}}  
  end  

但执行该功能后,响应为零。

0 个答案:

没有答案