我正在尝试使用Blockchain.Info的付款API发送付款。我在这里使用GitHub上的Python库:https://github.com/gowness/pyblockchain/blob/master/pyblockchain.py
当运行下面的代码时,我收到以下错误:RuntimeError:ERROR:对于输入字符串:“。001”有谁知道这里发生了什么?我正在运行Python 2.7。一旦我完成了一个事务的初始发送工作,我想看一下发送多个事务。
from __future__ import print_function
from itertools import islice, imap
import csv, requests, json, math
from collections import defaultdict
import requests
import urllib
import json
from os.path import expanduser
import configparser
class Wallet:
guid = 'g'
isAccount = 0
isKey = 0
password1 = 'x'
password2 = 'z'
url = ''
def __init__(self, guid = 'g', password1 = 'x', password2 = 'z'):
if guid.count('-') > 0:
self.isAccount = 1
if password1 == '': # wallet guid's contain -
raise ValueError('No password with guid.')
else:
self.isKey = 1
self.guid = guid
self.url = 'https://blockchain.info/merchant/' + guid + '/'
self.password1 = password1
self.password2 = password2
def Call(self, method, data = {}):
if self.password1 != '':
data['password'] = self.password1
if self.password2 != '':
data['second_password'] = self.password2
response = requests.post(self.url + method,params=data)
json = response.json()
if 'error' in json:
raise RuntimeError('ERROR: ' + json['error'])
return json
def SendPayment(self, toaddr='TA', amount='0.001', fromaddr = 'FA', shared = 0, fee = 0.0001, note = 'test'):
data = {}
data['address'] = toaddr
data['amount'] = amount
data['fee'] = fee
if fromaddr != '':
data['from'] = fromaddr
if shared == 1:
data['shared'] = 'true'
if note != '':
data['note'] = note
response = self.Call('payment',data)
return
def SendManyPayment(self, txs = {} , fromaddr = 'FA', shared = 0, fee = 0.0001, note = 'test'):
responses = {}
for tx in txs:
SendPayment(self, tx[0], tx[1] , fromaddr , shared , fee , note )
return
print(Wallet().SendPayment())
答案 0 :(得分:0)
我修好了,支付金额需要在Satoshi而不是BTC。应该先看一下API文档;)