fix: remove legacy code
This commit is contained in:
committed by
Michael Vines
parent
aea0e83a40
commit
4a547b0057
@@ -217,7 +217,8 @@ export class Transaction {
|
||||
|
||||
allKeys.sort(function(x, y) {
|
||||
const checkSigner = x.isSigner === y.isSigner ? 0 : x.isSigner ? -1 : 1;
|
||||
const checkWritable = x.isWritable === y.isWritable ? 0 : x.isWritable ? -1 : 1;
|
||||
const checkWritable =
|
||||
x.isWritable === y.isWritable ? 0 : x.isWritable ? -1 : 1;
|
||||
return checkSigner || checkWritable;
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user