Skip to content

Commit 4d03ef5

Browse files
author
Felipe Zimmerle
committed
Fix TX dictionary element name on logs
Before this patch the element name was not being shown.
1 parent 5f60bb5 commit 4d03ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/variables/tx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace Variables {
3333
class Tx_DictElement : public Variable {
3434
public:
3535
explicit Tx_DictElement(std::string dictElement)
36-
: Variable("TX"),
36+
: Variable("TX:" + dictElement),
3737
m_dictElement("TX:" + dictElement) { }
3838

3939
void evaluate(Transaction *transaction,

0 commit comments

Comments
 (0)