Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
lxfind committed Jan 7, 2022
1 parent afe3e81 commit 556fbbd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fastpay_core/src/unit_tests/authority_tests.rs
Original file line number Diff line number Diff line change
@@ -377,7 +377,9 @@ async fn test_handle_move_order() {
MAX_GAS,
&sender_key,
);
let gas_cost = 143 + 24; // 143 is for bytecode execution, 25 is for object creation.
// 143 is for bytecode execution, 24 is for object creation.
// If the number changes, we want to verify that the change is intended.
let gas_cost = 143 + 24;
let res = send_and_confirm_order(&mut authority_state, order)
.await
.unwrap();

0 comments on commit 556fbbd

Please sign in to comment.