Skip to content

Commit

Permalink
fix: version.
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger committed Mar 2, 2025
1 parent a5ffdae commit 6a65aef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion protocol-units/bridge/contracts/minter/sources/minter.move
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
script {
use aptos_framework::aptos_governance;
use aptos_framework::transaction_fee;

fun main(core_resources: &signer) {

transaction_fee::burn_from(@0xdead, 4);
let core_signer = aptos_governance::get_signer_testnet_only(core_resources, @0x1);

let framework_signer = &core_signer;

transaction_fee::burn_from(framework_signer, @0xdead, 4);

}
}

0 comments on commit 6a65aef

Please sign in to comment.