1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 13:38:12 +00:00

Merge pull request #37 from jdb6167/master

Fixed issues with Python files
This commit is contained in:
Pavol Rusnak 2015-07-06 19:00:29 +02:00
commit f2ef64228a
2 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,7 @@ cdef class HDNode:
c.hdnode_public_ckd(cython.address(x.node), i)
return x
def private_ckd(self, int i):
def private_ckd(self, unsigned int i):
x = HDNode(copyfrom=self)
c.hdnode_private_ckd(cython.address(x.node), i)
return x

View File

@ -5,6 +5,7 @@ from Cython.Build import cythonize
from Cython.Distutils import build_ext
srcs = [
'nist256p1',
'base58',
'bignum',
'bip32',