CamelCase

This commit is contained in:
Ben Wilson 2019-11-11 15:30:31 -05:00
parent 1693503598
commit b6ca9eb332
1 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ class ZDaemon(object):
def getBlockByHash(self, blockhash): def getBlockByHash(self, blockhash):
return self._call('getblock', blockhash) return self._call('getblock', blockhash)
def getrawtransaction(self, txid): def getRawTransaction(self, txid):
return self._call('getrawtransaction', txid, 1) return self._call('getrawtransaction', txid, 1)
def getBlockByHeight(self, blockheight): def getBlockByHeight(self, blockheight):
@ -52,19 +52,19 @@ class ZDaemon(object):
def getNetworkHeight(self): def getNetworkHeight(self):
return self._call('getblockcount') return self._call('getblockcount')
def getinfo(self): def getInfo(self):
return self._call('getinfo') return self._call('getinfo')
def getchaintips(self): def getChainTips(self):
return self._call('getchaintips') return self._call('getchaintips')
def getmempoolinfo(self): def getMempoolInfo(self):
return self._call('getmempoolinfo') return self._call('getmempoolinfo')
def getnetworksolps(self): def getNetworkSolps(self):
return self._call('getnetworksolps') return self._call('getnetworksolps')
def getnettotals(self): def getNetTotals(self):
return self._call('getnettotals') return self._call('getnettotals')
def getNetworkDifficulty(self): def getNetworkDifficulty(self):