Commit 5af9b7b2 authored by Matthew Slipper's avatar Matthew Slipper

lint

parent 06da1613
...@@ -278,10 +278,14 @@ export const getDeploymentAddress = async ( ...@@ -278,10 +278,14 @@ export const getDeploymentAddress = async (
} }
export const jsonifyTransaction = (tx: ethers.PopulatedTransaction): string => { export const jsonifyTransaction = (tx: ethers.PopulatedTransaction): string => {
return JSON.stringify({ return JSON.stringify(
to: tx.to, {
data: tx.data, to: tx.to,
value: tx.value, data: tx.data,
chainId: tx.chainId, value: tx.value,
}, null, 2) chainId: tx.chainId,
},
null,
2
)
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment