mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-30 17:21:21 +00:00
core: add equality function to mako template too
This commit is contained in:
parent
0568379f8d
commit
164336cb56
@ -63,6 +63,11 @@ class CoinInfo:
|
|||||||
self.sign_hash_double = True
|
self.sign_hash_double = True
|
||||||
self.script_hash = sha256_ripemd160_digest
|
self.script_hash = sha256_ripemd160_digest
|
||||||
|
|
||||||
|
def __eq__(self, other):
|
||||||
|
if not isinstance(other, CoinInfo):
|
||||||
|
return NotImplemented
|
||||||
|
return self.coin_name == other.coin_name
|
||||||
|
|
||||||
|
|
||||||
# fmt: off
|
# fmt: off
|
||||||
<%
|
<%
|
||||||
|
Loading…
Reference in New Issue
Block a user