Skip to content

Commit

Permalink
Fix compiling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Jan 9, 2024
1 parent 6640720 commit 897aa05
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/proxy-deployer/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@
////////////////////////////////////////////////////

// Init: 1
// Endpoints: 18
// Endpoints: 20
// Async Callback (empty): 1
// Total number of exported functions: 20
// Total number of exported functions: 22

#![no_std]

// Configuration that works with rustc < 1.73.0.
// TODO: Recommended rustc version: 1.73.0 or newer.
#![allow(internal_features)]
#![feature(lang_items)]

multiversx_sc_wasm_adapter::allocator!();
Expand All @@ -30,11 +28,13 @@ multiversx_sc_wasm_adapter::endpoints! {
addDeployerToBlacklist => add_deployer_to_blacklist
removeDeployerFromBlacklist => remove_deployer_from_blacklist
setDefaultGasForSaveOperation => set_default_gas_for_save_operation
setMetadataForDeployingContracts => set_metadata_for_deploying_contracts
getDeployerContractsByTemplate => get_deployer_contracts_by_template
getAllDeployerContracts => get_all_deployer_contracts
getAllDeployedContractsByTemplate => deployed_contracts_list_by_template
getOngoingUpgradeOperations => ongoing_upgrade_operation
getDefaultGasForSaveOperation => default_gas_for_save_operation
getMetadataForDeployingContracts => metadata_for_deploying_contracts
getAllDeployers => deployers_list
getAllBlacklistedDeployers => blacklisted_deployers_list
pause => pause_endpoint
Expand Down

0 comments on commit 897aa05

Please sign in to comment.