File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
aptos-move/framework/aptos-framework/sources
third_party/move/move-vm/runtime/src Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ module aptos_framework::governed_gas_pool {
67
67
68
68
/// Initialize the governed gas pool as a module
69
69
/// @param aptos_framework The signer of the aptos_framework module.
70
- public fun init_module (aptos_framework: &signer ) {
70
+ fun init_module (aptos_framework: &signer ) {
71
71
// Initialize the governed gas pool
72
72
let seed : vector <u8 > = b"aptos_framework::governed_gas_pool ";
73
73
initialize (aptos_framework, seed);
Original file line number Diff line number Diff line change @@ -801,7 +801,10 @@ impl Interpreter {
801
801
addr,
802
802
) ?;
803
803
self . operand_stack . push ( res. map_err ( |err| {
804
- err. with_message ( format ! ( "Failed to borrow global resource from {:?}" , addr) )
804
+ err. with_message ( format ! (
805
+ "Failed to borrow global resource from {:?} {:?}" ,
806
+ addr, ty
807
+ ) )
805
808
} ) ?) ?;
806
809
Ok ( ( ) )
807
810
}
You can’t perform that action at this time.
0 commit comments