refactor: switch function name from ready to finish (#5430)

This commit is contained in:
Mayukha Vadari
2025-05-20 16:12:19 -04:00
committed by GitHub
parent 1e9ff88a00
commit 5b43ec7f73
5 changed files with 1589 additions and 2984 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2020 Ripple Labs Inc.
Copyright (c) 2025 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above

View File

@@ -615,7 +615,7 @@ EscrowFinish::doApply()
// WASM execution
auto const wasmStr = slep->getFieldVL(sfFinishFunction);
std::vector<uint8_t> wasm(wasmStr.begin(), wasmStr.end());
std::string funcName("ready");
std::string funcName("finish");
WasmHostFunctionsImpl ledgerDataProvider(ctx_, k);