Skip to content

Commit e9ebe54

Browse files
authored
Merge pull request #653 from jleni/v0.55
txs fixes
2 parents 90eecc0 + 6c067ce commit e9ebe54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

qrl/core/qrlnode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def submit_send_tx(self, tx: TransferTransaction) -> bool:
287287

288288
if tx.subtype == qrl_pb2.Transaction.LATTICE:
289289
self._p2pfactory.broadcast_lt(tx)
290-
elif tx.subtype == qrl_pb2.Transaction.TX:
290+
elif tx.subtype == qrl_pb2.Transaction.TRANSFER:
291291
tx.validate_or_raise()
292292

293293
block_number = self._buffered_chain.height + 1

0 commit comments

Comments
 (0)