Skip to content

Commit

Permalink
Use amount greater than 0 for mocked tx.
Browse files Browse the repository at this point in the history
  • Loading branch information
koxu1996 committed May 10, 2024
1 parent 40fa4f2 commit 80a2329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kairos-server/src/l1_sync/event_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl EventManager {
let txn = Signed {
public_key: "cafebabe".into(),
nonce: 0,
transaction: Transaction::Deposit(Deposit { amount: 0 }),
transaction: Transaction::Deposit(Deposit { amount: 100 }),
};
self.batch_service
.enqueue_transaction(txn)
Expand Down

0 comments on commit 80a2329

Please sign in to comment.