xmr: fix new transaction type for CLSAG, HF=13

pull/1257/head
Dusan Klinec 4 years ago committed by Ondřej Vejpustek
parent 047fcffde1
commit 9d7b0bf50c

@ -20,3 +20,4 @@ class RctType:
"""
Bulletproof2 = 4
CLSAG = 5

@ -71,6 +71,7 @@ class State:
self.output_change = None
self.fee = 0
self.tx_type = 0
# wallet sub-address major index
self.account_idx = 0

@ -68,6 +68,10 @@ async def init_transaction(
if tsx_data.hard_fork:
state.hard_fork = tsx_data.hard_fork
state.tx_type = (
signing.RctType.CLSAG if state.hard_fork >= 13 else signing.RctType.Bulletproof2
)
# Ensure change is correct
_check_change(state, tsx_data.outputs)
@ -92,7 +96,7 @@ async def init_transaction(
# Final message hasher
state.full_message_hasher.init()
state.full_message_hasher.set_type_fee(signing.RctType.Bulletproof2, state.fee)
state.full_message_hasher.set_type_fee(state.tx_type, state.fee)
# Sub address precomputation
if tsx_data.account is not None and tsx_data.minor_indices:

@ -9,7 +9,6 @@ import gc
from trezor import utils
from apps.monero.layout import confirms
from apps.monero.signing import RctType
from apps.monero.xmr import crypto
from .state import State
@ -56,7 +55,7 @@ async def all_outputs_set(state: State) -> MoneroTransactionAllOutSetAck:
# Initializes RCTsig structure (fee, tx prefix hash, type)
rv_pb = MoneroRingCtSig(
txn_fee=state.fee, message=state.tx_prefix_hash, rv_type=RctType.Bulletproof2,
txn_fee=state.fee, message=state.tx_prefix_hash, rv_type=state.tx_type,
)
_out_pk(state)

@ -174,6 +174,7 @@ async def sign_input(
state.mem_trace(4, True)
from apps.monero.xmr import mlsag
from apps.monero import signing
mg_buffer = []
ring_pubkeys = [x.key for x in src_entr.outputs if x]
@ -182,7 +183,7 @@ async def sign_input(
state.mem_trace(5, True)
if state.hard_fork and state.hard_fork >= 13:
if state.tx_type == signing.RctType.CLSAG:
state.mem_trace("CLSAG")
mlsag.generate_clsag_simple(
state.full_message,

Loading…
Cancel
Save