Skip to content

Commit

Permalink
Add missing txn commit
Browse files Browse the repository at this point in the history
Identified by @akildemir.
  • Loading branch information
kayabaNerve committed Jul 5, 2024
1 parent 8a36e46 commit 04e86ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions coordinator/tributary/tendermint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1068,6 +1068,7 @@ impl<N: Network + 'static> TendermintMachine<N> {
let mut message_tape = txn.get(&message_tape_key).unwrap_or(vec![]);
message_tape.extend(signed_msg.encode());
txn.put(&message_tape_key, message_tape);
txn.commit();
}

// Re-broadcast this since it's an original consensus message worth handling
Expand Down

0 comments on commit 04e86ff

Please sign in to comment.