Skip to content

Commit 3f64ef5

Browse files
authored
fix: correct mismatched plot data in bip-0119 simulation
1 parent 46858e5 commit 3f64ef5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bip-0119/simulation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def make_patch_spines_invisible(ax):
122122

123123

124124
par1.set_ylabel("Confirmed but Pending Transactions")
125-
p4, = par1.plot(blocktimes_c1, unspendable2, "c", label="Congestion Control Pending (2x Rate)")
126-
p4, = par1.plot(blocktimes_c2, unspendable, "r", label="Congestion Control Pending (1x Rate)")
125+
p4, = par1.plot(blocktimes_c1, unspendable, "c", label="Congestion Control Pending (1x Rate)")
126+
p4, = par1.plot(blocktimes_c2, unspendable2, "r", label="Congestion Control Pending (2x Rate)")
127127
par1.yaxis.label.set_color(p4.get_color())
128128

129129

0 commit comments

Comments
 (0)