Skip to content

Commit e516538

Browse files
committed
review addressing
1 parent aad2aab commit e516538

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tasks/pdp/task_prove.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func NewProveTask(chainSched *chainsched.CurioChainSched, db *harmonydb.DB, ethC
105105
}
106106

107107
// Determine if there might be more proof sets to process
108-
more = len(proofSets) == 2
108+
more = len(proofSets) > 1
109109

110110
// Process the first proof set
111111
todo := proofSets[0]

web/static/ux/curio-ux.mjs

+4-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@ class CurioUX extends LitElement {
221221
</li>
222222
<li>
223223
<a href="/pages/pdp/" class="nav-link text-white ${active=='/pages/pdp/'? 'active':''}">
224-
<svg class="bi me-2" width="16" height="16"><use xlink:href="#hdd"></use></svg>
224+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-hdd" viewBox="0 0 16 16">
225+
<path d="M4.5 11a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1M3 10.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0"/>
226+
<path d="M16 11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V9.51c0-.418.105-.83.305-1.197l2.472-4.531A1.5 1.5 0 0 1 4.094 3h7.812a1.5 1.5 0 0 1 1.317.782l2.472 4.53c.2.368.305.78.305 1.198zM3.655 4.26 1.592 8.043Q1.79 8 2 8h12q.21 0 .408.042L12.345 4.26a.5.5 0 0 0-.439-.26H4.094a.5.5 0 0 0-.44.26zM1 10v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1"/>
227+
</svg>
225228
<span>PDP</span>
226229
</a>
227230
</li>

0 commit comments

Comments
 (0)