bug: rename style key to fmt in ts config output

buddies-main-deployment
James Prestwich 3 years ago
parent ccb8f70c9d
commit c4efcd200f
No known key found for this signature in database
GPG Key ID: 7CC174C250AD83AD
  1. 4
      rust/config/1629224985839/alfajores_config.json
  2. 4
      rust/config/1629224985839/kovan_config.json
  3. 4
      rust/config/1629226112796/alfajores_config.json
  4. 4
      rust/config/1629226112796/kovan_config.json
  5. 2
      typescript/optics-deploy/src/chain.ts
  6. 2
      typescript/optics-deploy/src/core/CoreDeploy.ts

@ -34,7 +34,7 @@
},
"tracing": {
"level": "debug",
"style": "json"
"fmt": "json"
},
"db": "db_path"
}
}

@ -34,7 +34,7 @@
},
"tracing": {
"level": "debug",
"style": "json"
"fmt": "json"
},
"db": "db_path"
}
}

@ -34,7 +34,7 @@
},
"tracing": {
"level": "debug",
"style": "json"
"fmt": "json"
},
"db": "db_path"
}
}

@ -34,7 +34,7 @@
},
"tracing": {
"level": "debug",
"style": "json"
"fmt": "json"
},
"db": "db_path"
}
}

@ -85,7 +85,7 @@ export type RustConfig = {
home: RustContractBlock;
tracing: {
level: string;
style: string;
fmt: 'json';
};
db: string;
};

@ -81,7 +81,7 @@ export class CoreDeploy extends Deploy<CoreContracts> {
home,
tracing: {
level: 'debug',
style: 'json',
fmt: 'json',
},
db: 'db_path',
};

Loading…
Cancel
Save