コード例 #1
0
ファイル: app.py プロジェクト: liuweihust/abciserver
 def commit(self):
     self.hashCount += 1
     if self.txCount == 0:
         return "", 0
     h = encode_big_endian(self.txCount, 8)
     h.reverse()
     return str(h), 0
コード例 #2
0
ファイル: app.py プロジェクト: mdyring/tendermint
 def commit(self):
     self.hashCount += 1
     if self.txCount == 0:
         return "", 0
     h = encode_big_endian(self.txCount, 8)
     h.reverse()
     return str(h), 0