Files
rippled/src/Operation.cpp
2012-09-07 14:23:01 -07:00

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