Просмотр исходного кода

drk: Temporarily disable history_record.

parazyd 3 лет назад
Родитель
Сommit
e3bf302717
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      bin/drk/src/rpc_blockchain.rs

+ 2 - 1
bin/drk/src/rpc_blockchain.rs

@@ -171,7 +171,8 @@ impl Drk {
         let txid = serde_json::from_value(rep)?;
         let txid = serde_json::from_value(rep)?;
 
 
         // Store transactions history record
         // Store transactions history record
-        self.insert_tx_history_record(tx).await?;
+        // FIXME: This breaks with the DAO::Exec transaction
+        //self.insert_tx_history_record(tx).await?;
 
 
         Ok(txid)
         Ok(txid)
     }
     }