We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a001482 commit c577698Copy full SHA for c577698
1 file changed
packages/wallet/core/src/state/arweave/index.ts
@@ -76,10 +76,6 @@ const PAYLOAD_VERSION_FILTER = {
76
'Minor-Version': '2',
77
} as const
78
79
-function isPlainSignatureType(type: SignatureType): type is (typeof PLAIN_SIGNATURE_TYPES)[number] {
80
- return (PLAIN_SIGNATURE_TYPES as readonly SignatureType[]).includes(type)
81
-}
82
-
83
function isSapientSignatureType(type: SignatureType): type is (typeof SAPIENT_SIGNATURE_TYPES)[number] {
84
return (SAPIENT_SIGNATURE_TYPES as readonly SignatureType[]).includes(type)
85
}
0 commit comments