Files
xahaud/src/cpp/ripple/Operation.cpp

15 lines
138 B
C++

/*
We also need to charge for each op
*/
namespace Script {
int Operation::getFee()
{
return(theConfig.FEE_CONTRACT_OPERATION);
}
}