Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion move/switchboard/sources/schemas/aggregator.move
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module switchboard::aggregator {
use aptos_framework::account::{Self, SignerCapability};
use aptos_framework::account::{SignerCapability};
use aptos_framework::timestamp;
use aptos_framework::block;
use aptos_std::ed25519;
Expand Down Expand Up @@ -562,6 +562,9 @@ module switchboard::aggregator {
}
}

#[test_only]
use aptos_framework::account;

#[test_only]
public entry fun new_test(account: &signer, value: u128, dec: u8, neg: bool) {
let cap = account::create_test_signer_cap(signer::address_of(account));
Expand Down