mirror of
https://github.com/status-im/safe-react.git
synced 2025-03-04 03:10:45 +00:00
change signature
key name to methodSignature
There is something down there that mutates the `tx` object in the Review screen and was overwriting the `signature` key with the method's hash
This commit is contained in:
parent
420b9cb58e
commit
d5cf8c94ab
@ -18,9 +18,9 @@ class ABIService {
|
||||
}
|
||||
|
||||
static getMethodSignatureAndSignatureHash(method) {
|
||||
const signature = ABIService.getMethodSignature(method)
|
||||
const signatureHash = ABIService.getSignatureHash(signature)
|
||||
return { signature, signatureHash }
|
||||
const methodSignature = ABIService.getMethodSignature(method)
|
||||
const signatureHash = ABIService.getSignatureHash(methodSignature)
|
||||
return { methodSignature, signatureHash }
|
||||
}
|
||||
|
||||
static getMethodSignature({ inputs, name }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user