diff --git a/packages/worker-api/src/requests.ts b/packages/worker-api/src/requests.ts index c515cb44..009ad01f 100644 --- a/packages/worker-api/src/requests.ts +++ b/packages/worker-api/src/requests.ts @@ -83,6 +83,6 @@ export const createTrustedCall = ( return self.createType('TrustedCallSigned', { call: call, nonce: nonce, - signature: toAccount(accountOrPubKey, self.keyring()).sign(payload) + signature: { Sr25519: toAccount(accountOrPubKey, self.keyring()).sign(payload) }, }); }