forked from lthn/blockchain
additional changes for cake
This commit is contained in:
parent
9dd4f107b6
commit
208f50ce64
2 changed files with 9 additions and 1 deletions
|
|
@ -666,4 +666,10 @@ namespace plain_wallet
|
|||
return inst_ptr->gwm.reset_wallet_password(h, password);
|
||||
}
|
||||
|
||||
|
||||
// 0 (default), 1 (unimportant), 2 (normal), 3 (elevated), 4 (priority)
|
||||
uint64_t get_current_tx_fee(uint64_t priority)
|
||||
{
|
||||
return TX_DEFAULT_FEE;
|
||||
}
|
||||
}
|
||||
|
|
@ -47,5 +47,7 @@ namespace plain_wallet
|
|||
bool is_wallet_exist(const std::string& path);
|
||||
std::string get_wallet_info(hwallet h);
|
||||
std::string reset_wallet_password(hwallet h, const std::string& password);
|
||||
uint64_t get_current_tx_fee(uint64_t priority); // 0 (default), 1 (unimportant), 2 (normal), 3 (elevated), 4 (priority)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue