All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.chainmaker.sdk.config.SdkConfig Maven / Gradle / Ivy

There is a newer version: 3.0.0_alpha
Show newest version
/*
Copyright (C) THL A29 Limited, a Tencent company. All rights reserved.

SPDX-License-Identifier: Apache-2.0
*/

package org.chainmaker.sdk.config;

public class SdkConfig {

    private ChainClientConfig chainClient;

    public ChainClientConfig getChain_client() {
        return chainClient;
    }

    public void setChain_client(ChainClientConfig chain_client) {
        this.chainClient = chain_client;
    }

    public ChainClientConfig getChainClient() {
        return chainClient;
    }

    public void setChainClient(ChainClientConfig chainClient) {
        this.chainClient = chainClient;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy