Electric-Coin-Company / zcash-swift-wallet-sdk

iOS light client Framework proof-of-concept
MIT License
37 stars 34 forks source link

Remove default fee #1392

Open LukasKorba opened 2 months ago

LukasKorba commented 2 months ago

The new Proposal API deprecated some of the API related sending and shielding. It also deprecates the defaultFee because the fee is provided in the Proposal. Following code should be removed as well once we decide to remove the deprecated API.

public extension NetworkConstants {
    static func defaultFee() -> Zatoshi {
        Zatoshi(10_000)
    }
}