Skip to content

Commit 648be80

Browse files
authored
Aptos - Update node to v1.27.2 and increase funding amount (#1657)
* Aptos Localnet - Update node version and increase funding amount * Update Aptos node version to 1.27.2
1 parent fa32137 commit 648be80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

framework/components/blockchain/aptos.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var (
1919

2020
func defaultAptos(in *Input) {
2121
if in.Image == "" {
22-
in.Image = "aptoslabs/tools:aptos-node-v1.18.0"
22+
in.Image = "aptoslabs/tools:aptos-node-v1.27.2"
2323
}
2424
if in.Port != "" {
2525
framework.L.Warn().Msg("'port' field is set but only default port can be used: 8080")
@@ -87,7 +87,7 @@ func newAptos(in *Input) (*Output, error) {
8787
if err != nil {
8888
return nil, err
8989
}
90-
fundCmd := []string{"aptos", "account", "fund-with-faucet", "--account", DefaultAptosAccount}
90+
fundCmd := []string{"aptos", "account", "fund-with-faucet", "--account", DefaultAptosAccount, "--amount", "1000000000000"}
9191
_, err = framework.ExecContainer(containerName, fundCmd)
9292
if err != nil {
9393
return nil, err

0 commit comments

Comments
 (0)