Skip to content

Commit

Permalink
fix issue #6
Browse files Browse the repository at this point in the history
  • Loading branch information
studyzy committed Dec 20, 2024
1 parent b2c7125 commit ed43fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runstone.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ func (r *Runestone) Encipher() ([]byte, error) {
if edicts[i].ID.Block < (edicts[j].ID.Block) {
return true
}
if edicts[i].ID.Block == edicts[j].ID.Block && edicts[i].ID.Block < edicts[j].ID.Block {
if edicts[i].ID.Block == edicts[j].ID.Block && edicts[i].ID.Tx < edicts[j].ID.Tx {
return true
}
return false
Expand Down

0 comments on commit ed43fa4

Please sign in to comment.