From e3bf302717ea1fa218f2883b8a99a559822e2080 Mon Sep 17 00:00:00 2001 From: parazyd Date: Tue, 30 May 2023 15:47:25 +0200 Subject: [PATCH] drk: Temporarily disable history_record. --- bin/drk/src/rpc_blockchain.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/drk/src/rpc_blockchain.rs b/bin/drk/src/rpc_blockchain.rs index ce2b7be14..3374d3e10 100644 --- a/bin/drk/src/rpc_blockchain.rs +++ b/bin/drk/src/rpc_blockchain.rs @@ -171,7 +171,8 @@ impl Drk { let txid = serde_json::from_value(rep)?; // 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) }