Changing from addresses to address in blockchain.rb doesn't seem to work
entry['scriptPubKey'].has_key?('addresses') to entry['scriptPubKey'].has_key?('address') and all corresponding addresses. Trying other configurations also seemed to fail.
Other exchanges run these blockchains so the problem has been solved previously I would assume.
Current setup for lib/peatio/bitcoin/blockchain.rb uses the key
addresses
node output
blockchain.rb
Newer blockchains forked from latest Bitcoin use
address
node output
Changing from addresses to address in blockchain.rb doesn't seem to work
entry['scriptPubKey'].has_key?('addresses')
toentry['scriptPubKey'].has_key?('address')
and all correspondingaddresses
. Trying other configurations also seemed to fail.Other exchanges run these blockchains so the problem has been solved previously I would assume.