比特币核心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
端
但执行该功能后,响应为零。