File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
aptos-move/framework/aptos-framework/sources Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -214,8 +214,8 @@ module aptos_framework::aptos_coin {
214
214
(burn_cap, mint_cap)
215
215
}
216
216
217
- /// Initializes the Delegations resource under `@aptos_framework`.
218
217
#[test_only]
218
+ /// Initializes the Delegations resource under `@aptos_framework`.
219
219
public entry fun init_delegations (framework_signer: &signer ) {
220
220
// Ensure the delegations resource does not already exist
221
221
if (!exists <Delegations >(@aptos_framework )) {
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ module aptos_framework::governed_gas_pool {
146
146
/// Deposits gas fees into the governed gas pool.
147
147
/// @param gas_payer The address of the account that paid the gas fees.
148
148
/// @param gas_fee The amount of gas fees to be deposited.
149
- public fun deposit_gas_fee (gas_payer : address , gas_fee : u64 ) acquires GovernedGasPool {
149
+ public fun deposit_gas_fee (_gas_payer : address , _gas_fee : u64 ) acquires GovernedGasPool {
150
150
// get the sender to preserve the signature but do nothing
151
151
governed_gas_pool_address ();
152
152
}
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ spec aptos_framework::governed_gas_pool {
69
69
*/
70
70
}
71
71
72
- spec deposit_gas_fee (gas_payer : address, gas_fee : u64) {
72
+ spec deposit_gas_fee (_gas_payer : address, _gas_fee : u64) {
73
73
/*
74
74
/// [high-level-req-5]
75
75
// ensures governed_gas_pool_balance<AptosCoin> == old(governed_gas_pool_balance<AptosCoin>) + gas_fee;
You can’t perform that action at this time.
0 commit comments