mwc_core 5.3.9

Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format.
Documentation
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
// Copyright 2019 The Grin Developers
// Copyright 2024 The MWC Developers
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! All the rules required for a cryptocurrency to have reach consensus across
//! the whole network are complex and hard to completely isolate. Some can be
//! simple parameters (like block reward), others complex algorithms (like
//! Merkle sum trees or reorg rules). However, as long as they're simple
//! enough, consensus-relevant constants and short functions should be kept
//! here.

use crate::core::block::HeaderVersion;
use crate::core::hash::Hash;
use crate::global;
use crate::pow::Difficulty;
use std::cmp::{max, min};
use std::collections::VecDeque;

/// A mwc is divisible to 10^9, following the SI prefixes
pub const MWC_BASE: u64 = 1_000_000_000;
/// Millimwc, a thousand of a mwc
pub const MILLI_MWC: u64 = MWC_BASE / 1_000;
/// Micromwc, a thousand of a millimwc
pub const MICRO_MWC: u64 = MILLI_MWC / 1_000;
/// Nanomwc, smallest unit, takes a billion to make a mwc
pub const NANO_MWC: u64 = 1;

/// Block interval, in seconds, the network will tune its next_target for. Note
/// that we may reduce this value in the future as we get more data on mining
/// with Cuckoo Cycle, networks improve and block propagation is optimized
/// (adjusting the reward accordingly).
pub const BLOCK_TIME_SEC: u64 = 60;

/// MWC - Here is a block reward.
/// The block subsidy amount, one mwc per second on average
//pub const REWARD: u64 = BLOCK_TIME_SEC * MWC_BASE;

/// Actual block reward for a given total fee amount
pub fn reward(fee: u64, height: u64) -> u64 {
	// MWC has block reward schedule similar to bitcoin
	let block_reward = calc_mwc_block_reward(height);
	block_reward.saturating_add(fee)
}

/// MWC  genesis block reward in nanocoins (10M coins)
pub const GENESIS_BLOCK_REWARD: u64 = 10_000_000_000_000_000 + 41_800_000;

/// Nominal height for standard time intervals, hour is 60 blocks
pub const HOUR_HEIGHT: u64 = 3600 / BLOCK_TIME_SEC;
/// A day is 1440 blocks
pub const DAY_HEIGHT: u64 = 24 * HOUR_HEIGHT;
/// A week is 10_080 blocks
pub const WEEK_HEIGHT: u64 = 7 * DAY_HEIGHT;
/// A year is 524_160 blocks
pub const YEAR_HEIGHT: u64 = 52 * WEEK_HEIGHT;

/// Number of blocks before a coinbase matures and can be spent
pub const COINBASE_MATURITY: u64 = DAY_HEIGHT;

/// Target ratio of secondary proof of work to primary proof of work,
/// as a function of block height (time). Starts at 90% losing a percent
/// approximately every week. Represented as an integer between 0 and 100.
/// MWC: note we are changing this to an initial 45% (since we launch
/// approximately 1 year after mwc) and we also make it go to 0
/// over the course of 1 year. This will roughly keep us inline with mwc.
pub fn secondary_pow_ratio(height: u64) -> u64 {
	45u64.saturating_sub(height / (YEAR_HEIGHT / 45))
}

/// The AR scale damping factor to use. Dependent on block height
/// to account for pre HF behavior on testnet4.
fn ar_scale_damp_factor(_height: u64) -> u64 {
	AR_SCALE_DAMP_FACTOR
}

/// Cuckoo-cycle proof size (cycle length)
pub const PROOFSIZE: usize = 42;

// MWC want to keep this value: pub const DEFAULT_MIN_EDGE_BITS: u8 = 31;
/// Default Cuckatoo Cycle edge_bits, used for mining and validating.
pub const DEFAULT_MIN_EDGE_BITS: u8 = 31;

// MWC want to keep this value: pub const SECOND_POW_EDGE_BITS: u8 = 29;
/// Cuckaroo* proof-of-work edge_bits, meant to be ASIC resistant.
pub const SECOND_POW_EDGE_BITS: u8 = 29;

/// Original reference edge_bits to compute difficulty factors for higher
/// Cuckoo graph sizes, changing this would hard fork
pub const BASE_EDGE_BITS: u8 = 24;

/// Default number of blocks in the past when cross-block cut-through will start
/// happening. Needs to be long enough to not overlap with a long reorg.
/// Rational
/// behind the value is the longest bitcoin fork was about 30 blocks, so 5h. We
/// add an order of magnitude to be safe and round to 7x24h of blocks to make it
/// easier to reason about.
pub const CUT_THROUGH_HORIZON: u32 = WEEK_HEIGHT as u32;

/// Default number of blocks in the past to determine the height where we request
/// a txhashset (and full blocks from). Needs to be long enough to not overlap with
/// a long reorg.
/// Rational behind the value is the longest bitcoin fork was about 30 blocks, so 5h.
/// We add an order of magnitude to be safe and round to 2x24h of blocks to make it
/// easier to reason about.
pub const STATE_SYNC_THRESHOLD: u32 = 2 * DAY_HEIGHT as u32;

/// Size Weight of an input when counted against the max block weight capacity
pub const BLOCK_INPUT_WEIGHT: u64 = 1;

/// Size Weight of an output when counted against the max block weight capacity
pub const BLOCK_OUTPUT_WEIGHT: u64 = 21;

/// Size Weight of a kernel when counted against the max block weight capacity
pub const BLOCK_KERNEL_WEIGHT: u64 = 3;

/// Transaction fee weight of input
pub const TXFEE_INPUT_WEIGHT: u64 = 1;

/// Transaction fee weight of output
pub const TXFEE_OUTPUT_WEIGHT: u64 = 4;

/// Transaction fee weight of kernel
pub const TXFEE_KERNEL_WEIGHT: u64 = 1;

/// Total maximum block weight. At current sizes, this means a maximum
/// theoretical size of:
/// * `(674 + 33 + 1) * (40_000 / 21) = 1_348_571` for a block with only outputs
/// * `(1 + 8 + 8 + 33 + 64) * (40_000 / 3) = 1_520_000` for a block with only kernels
/// * `(1 + 33) * 40_000 = 1_360_000` for a block with only inputs
///
/// Regardless of the relative numbers of inputs/outputs/kernels in a block the maximum
/// block size is around 1.5MB
/// For a block full of "average" txs (2 inputs, 2 outputs, 1 kernel) we have -
/// `(1 * 2) + (21 * 2) + (3 * 1) = 47` (weight per tx)
/// `40_000 / 47 = 851` (txs per block)
///
pub const MAX_BLOCK_WEIGHT: u64 = 40_000;

// We want to keep the mwc test cases for NRD kernels.
// note!!! Currently NRD is disabled in MWC network. We need hardfork to activate it

/// AutomatedTesting and UserTesting HF1 height.
pub const TESTING_FIRST_HARD_FORK: u64 = 3;
/// AutomatedTesting and UserTesting HF2 height.
pub const TESTING_SECOND_HARD_FORK: u64 = 6;
/// AutomatedTesting and UserTesting HF3 height.
pub const TESTING_THIRD_HARD_FORK: u64 = 9;

/// Fork every 3 blocks
pub const TESTING_HARD_FORK_INTERVAL: u64 = 3;

/// Check whether the block version is valid at a given height
/// MWC doesn't want like mwc change the algorithms for mining. So version is constant
pub fn header_version(height: u64) -> HeaderVersion {
	let chain_type = global::get_chain_type();
	match chain_type {
		global::ChainTypes::Mainnet | global::ChainTypes::Floonet => {
			if height < get_c31_hard_fork_block_height() {
				HeaderVersion(1)
			} else {
				HeaderVersion(2)
			}
		}
		// Note!!!! We need that to cover NRD tests.
		global::ChainTypes::AutomatedTesting | global::ChainTypes::UserTesting => {
			if height < TESTING_FIRST_HARD_FORK {
				HeaderVersion(1)
			} else if height < TESTING_SECOND_HARD_FORK {
				HeaderVersion(2)
			} else if height < TESTING_THIRD_HARD_FORK {
				HeaderVersion(3)
			} else {
				HeaderVersion(4)
			}
		}
	}
}

/// Check whether the block version is valid at a given height.
/// Currently we only use the default version. No hard forks planned.
pub fn valid_header_version(height: u64, version: HeaderVersion) -> bool {
	let chain_type = global::get_chain_type();
	match chain_type {
		global::ChainTypes::Mainnet | global::ChainTypes::Floonet => {
			if height < get_c31_hard_fork_block_height() {
				version == HeaderVersion(1)
			} else {
				version == HeaderVersion(2)
			}
		}
		// Note!!!! We need that to cover NRD tests.
		global::ChainTypes::AutomatedTesting | global::ChainTypes::UserTesting => {
			if height < TESTING_FIRST_HARD_FORK {
				version == HeaderVersion(1)
			} else if height < TESTING_SECOND_HARD_FORK {
				version == HeaderVersion(2)
			} else if height < TESTING_THIRD_HARD_FORK {
				version == HeaderVersion(3)
			} else {
				version == HeaderVersion(4)
			}
		}
	}
}

/// Number of blocks used to calculate difficulty adjustments
pub const DIFFICULTY_ADJUST_WINDOW: u64 = HOUR_HEIGHT;

/// Average time span of the difficulty adjustment window
pub const BLOCK_TIME_WINDOW: u64 = DIFFICULTY_ADJUST_WINDOW * BLOCK_TIME_SEC;

/// Clamp factor to use for difficulty adjustment
/// Limit value to within this factor of goal
pub const CLAMP_FACTOR: u64 = 2;

/// Dampening factor to use for difficulty adjustment
pub const DIFFICULTY_DAMP_FACTOR: u64 = 3;

/// Dampening factor to use for AR scale calculation.
pub const AR_SCALE_DAMP_FACTOR: u64 = 13;

/// Compute weight of a graph as number of siphash bits defining the graph
/// Must be made dependent on height to phase out C31 in early 2020
/// Later phase outs are on hold for now
/// MWC modification: keep the initial calculation permanently so always favor C31.
pub fn graph_weight(height: u64, edge_bits: u8) -> u64 {
	if height < get_c31_hard_fork_block_height() || edge_bits <= 31 {
		(2u64 << ((edge_bits as u64) - global::base_edge_bits() as u64) as u64) * (edge_bits as u64)
	} else {
		1
	}
}

/// Minimum difficulty, enforced in diff retargetting
/// avoids getting stuck when trying to increase difficulty subject to dampening
pub const MIN_DIFFICULTY: u64 = DIFFICULTY_DAMP_FACTOR;

/// Minimum scaling factor for AR pow, enforced in diff retargetting
/// avoids getting stuck when trying to increase ar_scale subject to dampening
pub const MIN_AR_SCALE: u64 = AR_SCALE_DAMP_FACTOR;

/// unit difficulty, equal to graph_weight(SECOND_POW_EDGE_BITS)
pub const UNIT_DIFFICULTY: u64 =
	((2 as u64) << (SECOND_POW_EDGE_BITS - BASE_EDGE_BITS)) * (SECOND_POW_EDGE_BITS as u64);

/// The initial difficulty at launch. This should be over-estimated
/// and difficulty should come down at launch rather than up
/// Currently grossly over-estimated at 10% of current
/// ethereum GPUs (assuming 1GPU can solve a block at diff 1 in one block interval)
pub const INITIAL_DIFFICULTY: u64 = 1_000_000 * UNIT_DIFFICULTY;

/// Minimal header information required for the Difficulty calculation to
/// take place. Used to iterate through a number of blocks. Note that an instance
/// of this is unable to calculate its own hash, due to an optimization that prevents
/// the header's PoW proof nonces from being deserialized on read
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct HeaderDifficultyInfo {
	/// Height if this block
	pub height: u64,
	/// Hash of this block
	pub hash: Option<Hash>,
	/// Timestamp of the header, 1 when not used (returned info)
	pub timestamp: u64,
	/// Network difficulty or next difficulty to use
	pub difficulty: Difficulty,
	/// Network secondary PoW factor or factor to use
	pub secondary_scaling: u32,
	/// Whether the header is a secondary proof of work
	pub is_secondary: bool,
}

impl HeaderDifficultyInfo {
	/// Default constructor
	pub fn new(
		height: u64,
		hash: Option<Hash>,
		timestamp: u64,
		difficulty: Difficulty,
		secondary_scaling: u32,
		is_secondary: bool,
	) -> HeaderDifficultyInfo {
		HeaderDifficultyInfo {
			height,
			hash,
			timestamp,
			difficulty,
			secondary_scaling,
			is_secondary,
		}
	}

	/// Constructor from a timestamp and difficulty, setting a default secondary
	/// PoW factor
	pub fn from_ts_diff(timestamp: u64, difficulty: Difficulty) -> HeaderDifficultyInfo {
		HeaderDifficultyInfo {
			height: 0,
			hash: None,
			timestamp,
			difficulty,
			secondary_scaling: global::initial_graph_weight(),

			is_secondary: true,
		}
	}

	/// Constructor from a difficulty and secondary factor, setting a default
	/// timestamp
	pub fn from_diff_scaling(
		difficulty: Difficulty,
		secondary_scaling: u32,
	) -> HeaderDifficultyInfo {
		HeaderDifficultyInfo {
			height: 0,
			hash: None,
			timestamp: 1,
			difficulty,
			secondary_scaling,
			is_secondary: true,
		}
	}
}

/// Move value linearly toward a goal
pub fn damp(actual: u64, goal: u64, damp_factor: u64) -> u64 {
	(actual + (damp_factor - 1) * goal) / damp_factor
}

/// limit value to be within some factor from a goal
pub fn clamp(actual: u64, goal: u64, clamp_factor: u64) -> u64 {
	max(goal / clamp_factor, min(actual, goal * clamp_factor))
}

/// Computes the proof-of-work difficulty that the next block should comply
/// with. Takes an iterator over past block headers information, from latest
/// (highest height) to oldest (lowest height).
///
/// The difficulty calculation is based on both Digishield and GravityWave
/// family of difficulty computation, coming to something very close to Zcash.
/// The reference difficulty is an average of the difficulty over a window of
/// DIFFICULTY_ADJUST_WINDOW blocks. The corresponding timespan is calculated
/// by using the difference between the median timestamps at the beginning
/// and the end of the window.
///
/// The secondary proof-of-work factor is calculated along the same lines, as
/// an adjustment on the deviation against the ideal value.
pub fn next_difficulty<T>(
	height: u64,
	cursor: T,
	cache_values: &mut VecDeque<HeaderDifficultyInfo>,
) -> HeaderDifficultyInfo
where
	T: IntoIterator<Item = HeaderDifficultyInfo>,
{
	// Create vector of difficulty data running from earliest
	// to latest, and pad with simulated pre-genesis data to allow earlier
	// adjustment if there isn't enough window data length will be
	// DIFFICULTY_ADJUST_WINDOW + 1 (for initial block time bound)
	let diff_data = global::difficulty_data_to_vector(cursor, cache_values);

	// First, get the ratio of secondary PoW vs primary, skipping initial header
	let sec_pow_scaling = secondary_pow_scaling(height, &diff_data[1..]);

	// Get the timestamp delta across the window
	let ts_delta: u64 =
		diff_data[DIFFICULTY_ADJUST_WINDOW as usize].timestamp - diff_data[0].timestamp;

	// Get the difficulty sum of the last DIFFICULTY_ADJUST_WINDOW elements
	let diff_sum: u64 = diff_data
		.iter()
		.skip(1)
		.map(|dd| dd.difficulty.to_num())
		.sum();

	// adjust time delta toward goal subject to dampening and clamping
	let adj_ts = clamp(
		damp(ts_delta, BLOCK_TIME_WINDOW, DIFFICULTY_DAMP_FACTOR),
		BLOCK_TIME_WINDOW,
		CLAMP_FACTOR,
	);
	// minimum difficulty avoids getting stuck due to dampening
	let difficulty = max(MIN_DIFFICULTY, diff_sum * BLOCK_TIME_SEC / adj_ts);

	HeaderDifficultyInfo::from_diff_scaling(Difficulty::from_num(difficulty), sec_pow_scaling)
}

/// Count, in units of 1/100 (a percent), the number of "secondary" (AR) blocks in the provided window of blocks.
pub fn ar_count(_height: u64, diff_data: &[HeaderDifficultyInfo]) -> u64 {
	100 * diff_data.iter().filter(|n| n.is_secondary).count() as u64
}

/// Factor by which the secondary proof of work difficulty will be adjusted
pub fn secondary_pow_scaling(height: u64, diff_data: &[HeaderDifficultyInfo]) -> u32 {
	// Get the scaling factor sum of the last DIFFICULTY_ADJUST_WINDOW elements
	let scale_sum: u64 = diff_data.iter().map(|dd| dd.secondary_scaling as u64).sum();

	// compute ideal 2nd_pow_fraction in pct and across window
	let target_pct = secondary_pow_ratio(height);
	let target_count = DIFFICULTY_ADJUST_WINDOW * target_pct;

	// Get the secondary count across the window, adjusting count toward goal
	// subject to dampening and clamping.
	let adj_count = clamp(
		damp(
			ar_count(height, diff_data),
			target_count,
			ar_scale_damp_factor(height),
		),
		target_count,
		CLAMP_FACTOR,
	);
	let scale = scale_sum * target_pct / max(1, adj_count);

	// minimum AR scale avoids getting stuck due to dampening
	max(MIN_AR_SCALE, scale) as u32
}

/// Hard fork modifications:

fn get_c31_hard_fork_block_height() -> u64 {
	// return 202_500 for mainnet and 270_000 for floonet
	if global::get_chain_type() == global::ChainTypes::Floonet {
		270_000
	} else {
		202_500
	}
}

fn get_epoch_block_offset(epoch: u8) -> u64 {
	let mut ret = get_c31_hard_fork_block_height();
	if epoch >= 2 {
		if global::get_chain_type() == global::ChainTypes::Floonet {
			ret += DAY_HEIGHT;
		} else {
			ret += WEEK_HEIGHT;
		}
	}

	let mut i = 3;
	while i <= epoch {
		ret += get_epoch_duration(i - 1);
		i = i + 1;
	}
	ret
}

fn get_epoch_duration(epoch: u8) -> u64 {
	match epoch {
		2 => {
			// second epoch is 1 day on floonet and 120 days on mainnet
			if global::get_chain_type() == global::ChainTypes::Floonet {
				DAY_HEIGHT
			} else {
				120 * DAY_HEIGHT
			}
		}
		3 => {
			// third epoch is 1 day on floonet and 60 days on mainnet
			if global::get_chain_type() == global::ChainTypes::Floonet {
				DAY_HEIGHT
			} else {
				60 * DAY_HEIGHT
			}
		}
		4 => {
			// fourth epoch is 120 days
			120 * DAY_HEIGHT
		}
		5 => {
			// fifth epoch is 180 days
			180 * DAY_HEIGHT
		}
		6 => {
			// sixth epoch is 180 days
			180 * DAY_HEIGHT
		}
		7 => {
			// seventh epoch is 1 year
			YEAR_HEIGHT
		}
		8 => {
			// eigth epoch is 1 year
			YEAR_HEIGHT
		}
		9 => {
			// nineth epoch is 6 years
			6 * YEAR_HEIGHT
		}
		10 => {
			// tenth epoch is 10 years
			10 * YEAR_HEIGHT
		}
		_ => {
			// eleventh epoch is 1667+ years
			// epoch 11
			876_349_148 // Just over 1667 years.
		}
	}
}

fn get_epoch_reward(epoch: u8) -> u64 {
	match epoch {
		0 => GENESIS_BLOCK_REWARD,
		1 => MWC_FIRST_GROUP_REWARD,
		2 => {
			600_000_000 // 0.6 MWC
		}
		3 => {
			450_000_000 // 0.45 MWC
		}
		4 => {
			300_000_000 // 0.30 MWC
		}
		5 => {
			250_000_000 // 0.25 MWC
		}
		6 => {
			200_000_000 // 0.20 MWC
		}
		7 => {
			150_000_000 // 0.15 MWC
		}
		8 => {
			100_000_000 // 0.10 MWC
		}
		9 => {
			50_000_000 // 0.05 MWC
		}
		10 => {
			25_000_000 // 0.025 MWC
		}
		11 => {
			10_000_000 // 0.01 MWC
		}
		_ => {
			/* epoch == 12 */
			MWC_LAST_BLOCK_REWARD // final block reward just to make it to be 20M coins.
		}
	}
}

/// MWC Block reward for the first group - pre hard fork
pub const MWC_FIRST_GROUP_REWARD: u64 = 2_380_952_380;

/// We have a reward after the last epoch. This is just to get exactly 20M MWC.
pub const MWC_LAST_BLOCK_REWARD: u64 = 2_211_980;

/// Calculate MWC block reward.
pub fn calc_mwc_block_reward(height: u64) -> u64 {
	if height == 0 {
		// Genesis block
		return get_epoch_reward(0);
	}

	if height < get_epoch_block_offset(2) {
		return get_epoch_reward(1);
	} else if height < get_epoch_block_offset(3) {
		return get_epoch_reward(2);
	} else if height < get_epoch_block_offset(4) {
		return get_epoch_reward(3);
	} else if height < get_epoch_block_offset(5) {
		return get_epoch_reward(4);
	} else if height < get_epoch_block_offset(6) {
		return get_epoch_reward(5);
	} else if height < get_epoch_block_offset(7) {
		return get_epoch_reward(6);
	} else if height < get_epoch_block_offset(8) {
		return get_epoch_reward(7);
	} else if height < get_epoch_block_offset(9) {
		return get_epoch_reward(8);
	} else if height < get_epoch_block_offset(10) {
		return get_epoch_reward(9);
	} else if height < get_epoch_block_offset(11) {
		return get_epoch_reward(10);
	} else if height < get_epoch_block_offset(11) + get_epoch_duration(11) {
		return get_epoch_reward(11);
	} else if height == get_epoch_block_offset(11) + get_epoch_duration(11) {
		// last block
		return get_epoch_reward(12);
	}

	return 0;
}

/// MWC  calculate the total number of rewarded coins in all blocks including this one
pub fn calc_mwc_block_overage(height: u64, genesis_had_reward: bool) -> u64 {
	// including this one happens implicitly.
	// Because "this block is included", but 0 block (genesis) block is excluded, we will keep height as it is
	let mut overage: u64 = get_epoch_reward(0); // genesis block reward
	if !genesis_had_reward {
		overage -= get_epoch_reward(0);
	}

	if height < get_epoch_block_offset(2) {
		return overage + height * get_epoch_reward(1);
	}
	overage += get_epoch_reward(1) * (get_epoch_block_offset(2) - 1);

	if height < get_epoch_block_offset(3) {
		return overage + ((height + 1) - get_epoch_block_offset(2)) * get_epoch_reward(2);
	}
	overage += get_epoch_reward(2) * (get_epoch_block_offset(3) - get_epoch_block_offset(2));

	if height < get_epoch_block_offset(4) {
		return overage + ((height + 1) - get_epoch_block_offset(3)) * get_epoch_reward(3);
	}
	overage += get_epoch_reward(3) * (get_epoch_block_offset(4) - get_epoch_block_offset(3));

	if height < get_epoch_block_offset(5) {
		return overage + ((height + 1) - get_epoch_block_offset(4)) * get_epoch_reward(4);
	}
	overage += get_epoch_reward(4) * (get_epoch_block_offset(5) - get_epoch_block_offset(4));

	if height < get_epoch_block_offset(6) {
		return overage + ((height + 1) - get_epoch_block_offset(5)) * get_epoch_reward(5);
	}
	overage += get_epoch_reward(5) * (get_epoch_block_offset(6) - get_epoch_block_offset(5));

	if height < get_epoch_block_offset(7) {
		return overage + ((height + 1) - get_epoch_block_offset(6)) * get_epoch_reward(6);
	}
	overage += get_epoch_reward(6) * (get_epoch_block_offset(7) - get_epoch_block_offset(6));

	if height < get_epoch_block_offset(8) {
		return overage + ((height + 1) - get_epoch_block_offset(7)) * get_epoch_reward(7);
	}
	overage += get_epoch_reward(7) * (get_epoch_block_offset(8) - get_epoch_block_offset(7));

	if height < get_epoch_block_offset(9) {
		return overage + ((height + 1) - get_epoch_block_offset(8)) * get_epoch_reward(8);
	}
	overage += get_epoch_reward(8) * (get_epoch_block_offset(9) - get_epoch_block_offset(8));

	if height < get_epoch_block_offset(10) {
		return overage + ((height + 1) - get_epoch_block_offset(9)) * get_epoch_reward(9);
	}
	overage += get_epoch_reward(9) * (get_epoch_block_offset(10) - get_epoch_block_offset(9));

	if height < get_epoch_block_offset(11) {
		return overage + ((height + 1) - get_epoch_block_offset(10)) * get_epoch_reward(10);
	}
	overage += get_epoch_reward(10) * (get_epoch_block_offset(11) - get_epoch_block_offset(10));

	if height < get_epoch_block_offset(11) + get_epoch_duration(11) {
		return overage + ((height + 1) - get_epoch_block_offset(11)) * get_epoch_reward(11);
	}
	overage += get_epoch_reward(11) * (get_epoch_duration(11));

	// we add the last block reward to get us to 20 million
	if height >= get_epoch_block_offset(11) + get_epoch_duration(11) {
		overage += get_epoch_reward(12);
	}

	overage
}

#[cfg(test)]
mod test {
	use super::*;

	#[test]
	fn test_graph_weight() {
		global::set_local_chain_type(global::ChainTypes::Mainnet);

		// initial weights
		assert_eq!(graph_weight(1, 31), 256 * 31);
		assert_eq!(graph_weight(1, 32), 512 * 32);
		assert_eq!(graph_weight(1, 33), 1024 * 33);

		// one year in, 31 starts going down, the rest stays the same
		// after hard fork, constant values despite height
		assert_eq!(graph_weight(YEAR_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(YEAR_HEIGHT, 32), 1);
		assert_eq!(graph_weight(YEAR_HEIGHT, 33), 1);

		// 31 loses one factor per week
		// after hard fork, constant values despite height
		assert_eq!(graph_weight(YEAR_HEIGHT + WEEK_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(YEAR_HEIGHT + 2 * WEEK_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(YEAR_HEIGHT + 32 * WEEK_HEIGHT, 31), 256 * 31);

		// 2 years in, 31 still at 0, 32 starts decreasing
		// after hard fork, constant values despite height
		assert_eq!(graph_weight(2 * YEAR_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(2 * YEAR_HEIGHT, 32), 1);
		assert_eq!(graph_weight(2 * YEAR_HEIGHT, 33), 1);

		// 32 phaseout on hold
		// after hard fork, constant values despite height
		assert_eq!(graph_weight(2 * YEAR_HEIGHT + WEEK_HEIGHT, 32), 1);
		assert_eq!(graph_weight(2 * YEAR_HEIGHT + WEEK_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(2 * YEAR_HEIGHT + 30 * WEEK_HEIGHT, 32), 1);
		assert_eq!(graph_weight(2 * YEAR_HEIGHT + 31 * WEEK_HEIGHT, 32), 1);

		// 3 years in, nothing changes
		// after hard fork, constant values despite height
		assert_eq!(graph_weight(3 * YEAR_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(3 * YEAR_HEIGHT, 32), 1);
		assert_eq!(graph_weight(3 * YEAR_HEIGHT, 33), 1);

		// 4 years in, still on hold
		// after hard fork, constant values despite height
		assert_eq!(graph_weight(4 * YEAR_HEIGHT, 31), 256 * 31);
		assert_eq!(graph_weight(4 * YEAR_HEIGHT, 32), 1);
		assert_eq!(graph_weight(4 * YEAR_HEIGHT, 33), 1);
	}

	// MWC test the epoch dates
	#[test]
	fn test_epoch_dates() {
		global::set_local_chain_type(global::ChainTypes::Mainnet);

		assert_eq!(get_c31_hard_fork_block_height(), 202_500); // April 1, 2020 hard fork date
		assert_eq!(get_epoch_block_offset(2), 212_580); // April 7, 2020 second epoch begins
		assert_eq!(get_epoch_block_offset(3), 385_380); // August 7, 2020 third epoch begins
		assert_eq!(get_epoch_block_offset(4), 471_780); // October 7, 2020 fourth epoch begins
		assert_eq!(get_epoch_block_offset(5), 644_580); // February 7, 2021 fifth epoch begins
		assert_eq!(get_epoch_block_offset(6), 903_780); // August 7, 2021 sixth epoch begins
		assert_eq!(get_epoch_block_offset(7), 1_162_980); // February 7, 2022 seventh epoch begins
		assert_eq!(get_epoch_block_offset(8), 1_687_140); // February 7, 2023 eighth epoch begins
		assert_eq!(get_epoch_block_offset(9), 2_211_300); // February 7, 2024 nineth epoch begins
		assert_eq!(get_epoch_block_offset(10), 5_356_260); // February 7, 2030 tenth epoch begins
		assert_eq!(get_epoch_block_offset(11), 10_597_860); // February 7, 2040 eleventh epoch begins
		assert_eq!(
			get_epoch_block_offset(11) + get_epoch_duration(11),
			886_947_008
		);
	}

	// MWC  testing calc_mwc_block_reward output for the scedule that documented at definition of calc_mwc_block_reward
	#[test]
	fn test_calc_mwc_block_reward() {
		global::set_local_chain_type(global::ChainTypes::Mainnet);

		// first blocks
		assert_eq!(calc_mwc_block_reward(1), 2_380_952_380);
		assert_eq!(calc_mwc_block_reward(2), 2_380_952_380);

		// a little deeper
		assert_eq!(calc_mwc_block_reward(100000), 2_380_952_380);

		// pre hard fork block
		assert_eq!(
			calc_mwc_block_reward(get_c31_hard_fork_block_height() - 1),
			2_380_952_380
		);
		assert_eq!(
			calc_mwc_block_reward(get_c31_hard_fork_block_height()),
			2_380_952_380
		);

		assert_eq!(
			calc_mwc_block_reward(get_c31_hard_fork_block_height() + WEEK_HEIGHT - 1),
			2_380_952_380
		);

		// reward changes 1 week after HF
		assert_eq!(
			calc_mwc_block_reward(get_c31_hard_fork_block_height() + WEEK_HEIGHT),
			600_000_000
		);

		// check epoch 2
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(2)),
			600_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(2) - 1),
			2_380_952_380
		);

		// check epoch 3
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(3)),
			450_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(3) - 1),
			600_000_000
		);

		// check epoch 4
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(4)),
			300_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(4) - 1),
			450_000_000
		);

		// check epoch 5
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(5)),
			250_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(5) - 1),
			300_000_000
		);

		// check epoch 6
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(6)),
			200_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(6) - 1),
			250_000_000
		);

		// check epoch 7
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(7)),
			150_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(7) - 1),
			200_000_000
		);

		// check epoch 8
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(8)),
			100_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(8) - 1),
			150_000_000
		);

		// check epoch 9
		assert_eq!(calc_mwc_block_reward(get_epoch_block_offset(9)), 50_000_000);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(9) - 1),
			100_000_000
		);

		// check epoch 10
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(10)),
			25_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(10) - 1),
			50_000_000
		);

		// check epoch 11
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(11)),
			10_000_000
		);

		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(11) - 1),
			25_000_000
		);

		// last block reward is special
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(11) + get_epoch_duration(11)),
			MWC_LAST_BLOCK_REWARD
		);

		// 0
		assert_eq!(
			calc_mwc_block_reward(get_epoch_block_offset(11) + get_epoch_duration(11) + 1),
			0
		);

		// far far future
		assert_eq!(calc_mwc_block_reward(2_100_000 * 320000000 + 200), 0); // no reward
	}

	// MWC  testing calc_mwc_block_overage output for the schedule that documented at definition of calc_mwc_block_reward
	#[test]
	fn test_calc_mwc_block_overage() {
		global::set_local_chain_type(global::ChainTypes::Mainnet);

		let genesis_reward: u64 = GENESIS_BLOCK_REWARD;

		assert_eq!(calc_mwc_block_overage(0, true), genesis_reward); // Doesn't make sense to call for the genesis block
		assert_eq!(calc_mwc_block_overage(0, false), 0); // Doesn't make sense to call for the genesis block
		assert_eq!(
			calc_mwc_block_overage(1, true),
			genesis_reward + MWC_FIRST_GROUP_REWARD * 1
		);

		assert_eq!(
			calc_mwc_block_overage(get_c31_hard_fork_block_height(), true),
			genesis_reward + MWC_FIRST_GROUP_REWARD * get_c31_hard_fork_block_height()
		);

		assert_eq!(
			calc_mwc_block_overage(get_c31_hard_fork_block_height() + WEEK_HEIGHT - 1, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_c31_hard_fork_block_height() + WEEK_HEIGHT - 1)
		);

		assert_eq!(
			calc_mwc_block_overage(get_c31_hard_fork_block_height() + WEEK_HEIGHT, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_c31_hard_fork_block_height() + WEEK_HEIGHT - 1)
				+ get_epoch_reward(2) * 1
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(2), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_c31_hard_fork_block_height() + WEEK_HEIGHT - 1)
				+ get_epoch_reward(2) * 1
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(3) - 1, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(3), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ get_epoch_reward(3)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(3) + 1, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ get_epoch_reward(3) * 2
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(4), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ get_epoch_reward(4)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(4) + 3, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ get_epoch_reward(4) * 4
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(5), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ get_epoch_reward(5)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(5) + 3, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ get_epoch_reward(5) * 4
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(6), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ get_epoch_reward(6)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(6) + 3, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ get_epoch_reward(6) * 4
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(7), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ get_epoch_reward(7)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(7) + 3, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ get_epoch_reward(7) * 4
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(8), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ get_epoch_reward(8)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(8) + 3, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ get_epoch_reward(8) * 4
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(9), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ (get_epoch_block_offset(9) - get_epoch_block_offset(8)) * get_epoch_reward(8)
				+ get_epoch_reward(9)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(9) + 39, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ (get_epoch_block_offset(9) - get_epoch_block_offset(8)) * get_epoch_reward(8)
				+ get_epoch_reward(9) * 40
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(10), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ (get_epoch_block_offset(9) - get_epoch_block_offset(8)) * get_epoch_reward(8)
				+ (get_epoch_block_offset(10) - get_epoch_block_offset(9)) * get_epoch_reward(9)
				+ get_epoch_reward(10)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(10) + 1, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ (get_epoch_block_offset(9) - get_epoch_block_offset(8)) * get_epoch_reward(8)
				+ (get_epoch_block_offset(10) - get_epoch_block_offset(9)) * get_epoch_reward(9)
				+ get_epoch_reward(10) * 2
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(11), true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ (get_epoch_block_offset(9) - get_epoch_block_offset(8)) * get_epoch_reward(8)
				+ (get_epoch_block_offset(10) - get_epoch_block_offset(9)) * get_epoch_reward(9)
				+ (get_epoch_block_offset(11) - get_epoch_block_offset(10)) * get_epoch_reward(10)
				+ get_epoch_reward(11)
		);

		assert_eq!(
			calc_mwc_block_overage(get_epoch_block_offset(11) + 39, true),
			genesis_reward
				+ MWC_FIRST_GROUP_REWARD * (get_epoch_block_offset(2) - 1)
				+ (get_epoch_block_offset(3) - get_epoch_block_offset(2)) * get_epoch_reward(2)
				+ (get_epoch_block_offset(4) - get_epoch_block_offset(3)) * get_epoch_reward(3)
				+ (get_epoch_block_offset(5) - get_epoch_block_offset(4)) * get_epoch_reward(4)
				+ (get_epoch_block_offset(6) - get_epoch_block_offset(5)) * get_epoch_reward(5)
				+ (get_epoch_block_offset(7) - get_epoch_block_offset(6)) * get_epoch_reward(6)
				+ (get_epoch_block_offset(8) - get_epoch_block_offset(7)) * get_epoch_reward(7)
				+ (get_epoch_block_offset(9) - get_epoch_block_offset(8)) * get_epoch_reward(8)
				+ (get_epoch_block_offset(10) - get_epoch_block_offset(9)) * get_epoch_reward(9)
				+ (get_epoch_block_offset(11) - get_epoch_block_offset(10)) * get_epoch_reward(10)
				+ get_epoch_reward(11) * 40
		);

		// Calculating the total number of coins
		let total_blocks_reward = calc_mwc_block_overage(2_100_000_000 * 1000, true);
		// Expected 20M in total. The coin base is exactly 20M
		assert_eq!(total_blocks_reward, 20000000000000000);
	}

	// Brute force test to validate that calc_mwc_block_reward and calc_mwc_block_overage are in sync fo all blocks
	// Please note, the test is slow, it checking values for every block that will be generated until reward will be gone
	// Test is 'ignore' because it takes about an hour to run
	#[test]
	#[ignore]
	fn test_rewards_full_cycle() {
		global::set_local_chain_type(global::ChainTypes::Mainnet);

		let mut total_coins: u64 = GENESIS_BLOCK_REWARD;
		let mut height: u64 = 0;
		let mut zero_reward_blocks = 0;

		let total_blocks = get_epoch_block_offset(12);

		while zero_reward_blocks < 100 {
			assert_eq!(calc_mwc_block_overage(height, true), total_coins);
			height += 1;
			let r = calc_mwc_block_reward(height);
			total_coins += r;
			if r == 0 {
				zero_reward_blocks += 1;
			}
			if height % 1000000 == 0 {
				println!(
					"Current height={}, reward={}, coins={}, progress={:.1}%",
					height,
					r,
					total_coins,
					height as f64 / total_blocks as f64 * 100.0
				);
			}
		}

		println!(
			"Finished with height={}, reward={}, coins={}",
			height,
			calc_mwc_block_reward(height),
			total_coins
		);

		assert_eq!(total_coins, 20000000000000000);
		assert!(height > get_epoch_block_offset(12) + 99);

		// Test finished with output:
		//		Current height=884000000, reward=10000000, coins=19970529927788020, progress=99.7%
		//		Current height=885000000, reward=10000000, coins=19980529927788020, progress=99.8%
		//		Current height=886000000, reward=10000000, coins=19990529927788020, progress=99.9%
		//		Finished with height=886947108, reward=0, coins=20000000000000000
		//		test consensus::test::test_rewards_full_cycle ... ok
	}

	// Testing last 1M blocks, srating from the event: height=886000000, reward=10000000, coins=19990529927788020, progress=99.9%
	#[test]
	fn test_last_epoch() {
		global::set_local_chain_type(global::ChainTypes::Mainnet);

		let mut total_coins: u64 = 19990529927788020;
		let mut height: u64 = 886000000;
		let mut zero_reward_blocks = 0;

		while zero_reward_blocks < 100 {
			assert_eq!(calc_mwc_block_overage(height, true), total_coins);
			height += 1;
			let r = calc_mwc_block_reward(height);
			total_coins += r;
			if r == 0 {
				zero_reward_blocks += 1;
			}
		}
		assert_eq!(total_coins, 20000000000000000);
		assert!(height > get_epoch_block_offset(12) + 99);
	}
}