We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b4df79 commit c547df3Copy full SHA for c547df3
core/lib/protobuf_config/src/contracts.rs
@@ -87,7 +87,7 @@ impl ProtoRepr for proto::Contracts {
87
validator_timelock_addr: Some(format!("{:?}", this.validator_timelock_addr)),
88
default_upgrade_addr: Some(format!("{:?}", this.default_upgrade_addr)),
89
multicall3_addr: Some(format!("{:?}", this.l1_multicall3_addr)),
90
- base_token_addr: Some(format!("{:?}", this.base_token_addr)),
+ base_token_addr: this.base_token_addr.map(|a| format!("{:?}", a)),
91
}),
92
l2: Some(proto::L2 {
93
testnet_paymaster_addr: this.l2_testnet_paymaster_addr.map(|a| format!("{:?}", a)),
0 commit comments