added BTC

This commit is contained in:
Lex Berezhny 2019-03-28 23:02:23 -04:00
parent d1f0f76871
commit ded626a3fc

View file

@ -52,12 +52,14 @@ message Stream {
message Fee {
enum Currency {
LBC = 0;
USD = 2;
UNKNOWN_CURRENCY = 0;
LBC = 1;
BTC = 2;
USD = 3;
}
Currency currency = 1;
bytes address = 2;
uint64 amount = 3; // deweys for LBC, cents for USD
uint64 amount = 3; // deweys for LBC/BTC, cents for USD
}
message File {