From 0dd7acecba659a6723c7b4d2c30a64cf6cc015e1 Mon Sep 17 00:00:00 2001 From: EmmanuelChthonic Date: Tue, 21 Nov 2023 16:02:36 +0400 Subject: [PATCH] fix for two fo the tests --- coordinator/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/src/main.rs b/coordinator/src/main.rs index d86afbbc2..ae85e9720 100644 --- a/coordinator/src/main.rs +++ b/coordinator/src/main.rs @@ -138,7 +138,7 @@ async fn publish_signed_transaction( // Safe as we should deterministically create transactions, meaning if this is already on-disk, // it's what we're saving now - SignedTransactionDb::take_signed_transaction(txn, signed.nonce); + SignedTransactionDb::set(txn, signed.nonce, &tx.serialize()); (order, signer) } else {