1
0
Fork 0
forked from lthn/blockchain

additional changes for cake

This commit is contained in:
cryptozoidberg 2023-10-30 19:22:33 +00:00
parent 9dd4f107b6
commit 208f50ce64
2 changed files with 9 additions and 1 deletions

View file

@ -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;
}
}

View file

@ -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)
}
}