@@ -50,6 +50,7 @@ std::map<string,std::function<string(fc::variant,const fc::variants&)>> wallet_a
50
50
operation_history_object& i = d.op ;
51
51
auto b = _remote_db->get_block_header (i.block_num );
52
52
FC_ASSERT (b);
53
+ ss << i.block_num << " " ;
53
54
ss << b->timestamp .to_iso_string () << " " ;
54
55
i.op .visit (operation_printer (ss, *this , i));
55
56
ss << " \n " ;
@@ -67,6 +68,7 @@ std::map<string,std::function<string(fc::variant,const fc::variants&)>> wallet_a
67
68
operation_history_object& i = d.op ;
68
69
auto b = _remote_db->get_block_header (i.block_num );
69
70
FC_ASSERT (b);
71
+ ss << i.block_num << " " ;
70
72
ss << b->timestamp .to_iso_string () << " " ;
71
73
i.op .visit (operation_printer (ss, *this , i));
72
74
ss << " \n " ;
@@ -88,6 +90,7 @@ std::map<string,std::function<string(fc::variant,const fc::variants&)>> wallet_a
88
90
operation_history_object& i = d.op ;
89
91
auto b = _remote_db->get_block_header (i.block_num );
90
92
FC_ASSERT (b);
93
+ ss << i.block_num << " " ;
91
94
ss << b->timestamp .to_iso_string () << " " ;
92
95
i.op .visit (operation_printer (ss, *this , i));
93
96
ss << " transaction_id : " ;
0 commit comments