Switch all feerate u64's to u32's.
authorValentine Wallace <vwallace@protonmail.com>
Mon, 15 Jun 2020 21:28:01 +0000 (17:28 -0400)
committerValentine Wallace <vwallace@protonmail.com>
Tue, 16 Jun 2020 01:52:52 +0000 (21:52 -0400)
commitf91718722af63bd6dfb960340d539c093c0288aa
treead6e81bb3c3ee0c6005fa8b126e83977bcb9d124
parent4c655b2281383069e6ca27ba0faf640250d251c3
Switch all feerate u64's to u32's.

The protocol only allows a u32, so if we received or sent something
larger it would be an issue (though it's unlikely).
13 files changed:
fuzz/src/chanmon_consistency.rs
fuzz/src/full_stack.rs
lightning/src/chain/chaininterface.rs
lightning/src/chain/keysinterface.rs
lightning/src/ln/chan_utils.rs
lightning/src/ln/channel.rs
lightning/src/ln/channelmanager.rs
lightning/src/ln/channelmonitor.rs
lightning/src/ln/functional_tests.rs
lightning/src/ln/onchaintx.rs
lightning/src/util/enforcing_trait_impls.rs
lightning/src/util/errors.rs
lightning/src/util/test_utils.rs