Skip to content

Commit ed43fa4

Browse files
committed
fix issue #6
1 parent b2c7125 commit ed43fa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runstone.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ func (r *Runestone) Encipher() ([]byte, error) {
324324
if edicts[i].ID.Block < (edicts[j].ID.Block) {
325325
return true
326326
}
327-
if edicts[i].ID.Block == edicts[j].ID.Block && edicts[i].ID.Block < edicts[j].ID.Block {
327+
if edicts[i].ID.Block == edicts[j].ID.Block && edicts[i].ID.Tx < edicts[j].ID.Tx {
328328
return true
329329
}
330330
return false

0 commit comments

Comments
 (0)