1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//! Autogenerated weights for erc20_app
//!
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
//! DATE: 2021-11-25, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("spec.json"), DB CACHE: 128

// Executed Command:
// target/release/snowbridge
// benchmark
// --chain
// spec.json
// --execution
// wasm
// --wasm-execution
// compiled
// --pallet
// erc20_app
// --extra
// --extrinsic
// *
// --repeat
// 20
// --steps
// 50
// --output
// pallets/erc20-app/src/weights.rs
// --template
// module-weight-template.hbs


#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]

use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use sp_std::marker::PhantomData;

/// Weight functions needed for erc20_app.
pub trait WeightInfo {
	fn burn() -> Weight;
	fn mint() -> Weight;
	fn register_erc20_asset() -> Weight;
	fn register_native_asset() -> Weight;
	fn register_erc20_app() -> Weight;
	fn register_native_app() -> Weight;
	fn register_asset_internal() -> Weight;
}

// For backwards compatibility and tests
impl WeightInfo for () {
	fn burn() -> Weight {
		Weight::zero()
	}
	fn mint() -> Weight {
		Weight::zero()
	}

	fn register_erc20_asset() -> Weight {
		Default::default()
    }

	fn register_native_asset() -> Weight {
		Default::default()
    }

	fn register_erc20_app() -> Weight {
		Default::default()
    }

	fn register_native_app() -> Weight {
		Default::default()
    }

	fn register_asset_internal() -> Weight {
		Default::default()
    }
}