Skip to content

Commit

Permalink
Fix fork
Browse files Browse the repository at this point in the history
  • Loading branch information
sumamu authored Aug 9, 2023
1 parent a892f3c commit 06232a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/embedded/implementation/accelerator.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func (p *UpdateEmbeddedAcceleratorMethod) ReceiveBlock(context vm_context.Accoun
}
qsrBalance := new(big.Int).Set(balanceQsr)

sort.Slice(projectList, func(i, j int) bool {
sort.SliceStable(projectList, func(i, j int) bool {
var phaseITimestamp, phaseJTimestamp int64
phaseI, err := projectList[i].GetCurrentPhase(context.Storage())
if err != nil {
Expand Down

0 comments on commit 06232a7

Please sign in to comment.