File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ export async function deploy({ chain }: { chain?: string }) {
145145
146146 // Add deployment data to deployments.json
147147 await addDeploymentData ( {
148- sconifiedImage : appDockerImage ,
148+ image : appDockerImage ,
149149 appContractAddress : appContractAddress ,
150150 owner : userAddress ,
151151 chainName,
Original file line number Diff line number Diff line change @@ -57,18 +57,18 @@ export async function addRunData({
5757
5858// Function to add deployment data to deployments.json
5959export async function addDeploymentData ( {
60- sconifiedImage ,
60+ image ,
6161 appContractAddress,
6262 owner,
6363 chainName,
6464} : {
65- sconifiedImage : string ;
65+ image : string ;
6666 appContractAddress : string ;
6767 owner : string ;
6868 chainName : string ;
6969} ) {
7070 const deploymentData = {
71- sconifiedImage ,
71+ image ,
7272 appContractAddress,
7373 owner,
7474 } ;
You can’t perform that action at this time.
0 commit comments