We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca26d85 commit 580e9f8Copy full SHA for 580e9f8
src/wallet.rs
@@ -2756,16 +2756,16 @@ pub fn encode_circle_paymaster_data(
2756
call_gas_limit: u128,
2757
) -> Vec<u8> {
2758
let mut data = Vec::new();
2759
-
+
2760
// Paymaster address (20 bytes)
2761
data.extend_from_slice(paymaster.as_slice());
2762
2763
// Verification gas limit as uint128 (16 bytes)
2764
data.extend_from_slice(&verification_gas_limit.to_be_bytes());
2765
2766
- // Call gas limit as uint128 (16 bytes)
+ // Call gas limit as uint128 (16 bytes)
2767
data.extend_from_slice(&call_gas_limit.to_be_bytes());
2768
2769
// Total: 52 bytes (20 + 16 + 16)
2770
data
2771
}
0 commit comments