Skip to content

Commit

Permalink
fix: include burn_from.
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger committed Mar 2, 2025
1 parent 3c3181f commit dfcc5e5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions protocol-units/bridge/contracts/minter/sources/minter.move
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
script {
use aptos_framework::aptos_governance;
use aptos_framework::gas_schedule;
use aptos_framework::governed_gas_pool;
use aptos_framework::transaction_fee;

fun main(core_resources: &signer) {

governed_gas_pool::deposit_gas_fee(@0xdead, 4);
transaction_fee::burn_from(@0xdead, 4);

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use maptos_framework_release_util::commit_hash_with_script;
commit_hash_with_script!(
BiarritzRc1, // Struct name
"https://github.com/movementlabsxyz/aptos-core.git", // Repository URL
"b47f020dfbc534bcd12588f8a5d9e3604e662e63", // Commit hash
"4e88300b5d3356bcdd4ae98d3ea6335a3ad03321", // Commit hash
6, // Bytecode version
"biarritz-rc1.mrb", // MRB file name
"CACHE_BIARRITZ_RC1_FRAMEWORK_RELEASE" // Cache environment variable for Elsa
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use maptos_framework_release_util::mrb_release;
mrb_release!(
BiarritzRc1,
BIARRTIZ_RC1,
"b47f020dfbc534bcd12588f8a5d9e3604e662e63-biarritz-rc1.mrb"
"4e88300b5d3356bcdd4ae98d3ea6335a3ad03321-biarritz-rc1.mrb"
);

generate_gas_upgrade_module!(gas_upgrade, BiarritzRc1, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use maptos_framework_release_util::commit_hash_with_script;
commit_hash_with_script!(
BiarritzRc1, // Struct name
"https://github.com/movementlabsxyz/aptos-core.git", // Repository URL
"b47f020dfbc534bcd12588f8a5d9e3604e662e63", // Commit hash
"4e88300b5d3356bcdd4ae98d3ea6335a3ad03321", // Commit hash
6, // Bytecode version
"biarritz-rc1.mrb", // MRB file name
"CACHE_BIARRITZ_RC1_FRAMEWORK_RELEASE" // Cache environment variable for Elsa
Expand Down

0 comments on commit dfcc5e5

Please sign in to comment.