mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
rename variable
This commit is contained in:
@@ -92,12 +92,12 @@ setCommonHostFunctions(HostFunctions* hfs, ImportVec& i)
|
||||
ImportVec
|
||||
createWasmImport(HostFunctions& hfs)
|
||||
{
|
||||
ImportVec import;
|
||||
ImportVec i;
|
||||
|
||||
setCommonHostFunctions(&hfs, import);
|
||||
WASM_IMPORT_FUNC2(import, updateData, "update_data", &hfs, 1000);
|
||||
setCommonHostFunctions(&hfs, i);
|
||||
WASM_IMPORT_FUNC2(i, updateData, "update_data", &hfs, 1000);
|
||||
|
||||
return import;
|
||||
return i;
|
||||
}
|
||||
|
||||
Expected<EscrowResult, TER>
|
||||
|
||||
Reference in New Issue
Block a user