Skip to content

Commit 580e9f8

Browse files
Format Rust code using rustfmt
1 parent ca26d85 commit 580e9f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/wallet.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2756,16 +2756,16 @@ pub fn encode_circle_paymaster_data(
27562756
call_gas_limit: u128,
27572757
) -> Vec<u8> {
27582758
let mut data = Vec::new();
2759-
2759+
27602760
// Paymaster address (20 bytes)
27612761
data.extend_from_slice(paymaster.as_slice());
2762-
2762+
27632763
// Verification gas limit as uint128 (16 bytes)
27642764
data.extend_from_slice(&verification_gas_limit.to_be_bytes());
2765-
2766-
// Call gas limit as uint128 (16 bytes)
2765+
2766+
// Call gas limit as uint128 (16 bytes)
27672767
data.extend_from_slice(&call_gas_limit.to_be_bytes());
2768-
2768+
27692769
// Total: 52 bytes (20 + 16 + 16)
27702770
data
27712771
}

0 commit comments

Comments
 (0)