mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
17 lines
181 B
C++
17 lines
181 B
C++
#include "Operation.h"
|
|
#include "Config.h"
|
|
|
|
/*
|
|
We also need to charge for each op
|
|
|
|
*/
|
|
|
|
namespace Script {
|
|
|
|
|
|
int Operation::getFee()
|
|
{
|
|
return(theConfig.FEE_CONTRACT_OPERATION);
|
|
}
|
|
|
|
} |