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. 2
      rust/config/1629224985839/alfajores_config.json
  2. 2
      rust/config/1629224985839/kovan_config.json
  3. 2
      rust/config/1629226112796/alfajores_config.json
  4. 2
      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": { "tracing": {
"level": "debug", "level": "debug",
"style": "json" "fmt": "json"
}, },
"db": "db_path" "db": "db_path"
} }

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

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

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

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

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

Loading…
Cancel
Save