Files
xahaud/src/cpp/ripple/Operation.cpp
2012-11-07 12:49:50 -08: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);
}
}